* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #c9980a;
    --secondary-gold: #f0b700;
    --light-gold: #fffbf0;
    --lighter-gold: #fef7e0;
    --accent-gold: #faff6d;
    --dark-slate: #0f172a;
    --medium-slate: #1e293b;
    --light-slate: #475569;
    --text-gray: #64748b;
    --light-gray: #94a3b8;
    --white: #ffffff;
    --shadow-light: rgba(201, 152, 10, 0.1);
    --shadow-medium: rgba(201, 152, 10, 0.2);
    --shadow-heavy: rgba(201, 152, 10, 0.3);
    --shadow-ultra: rgba(201, 152, 10, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --success-green: #10b981;
    --error-red: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-image {
    margin-bottom: -40px;
    height: 28px; /* Adjust size as needed */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    margin-top: 0px;
    margin-left: 40px;
    align-items: flex-start;
}

.logo-text-desc{
    font-style: italic;
    margin-left: -40px;
    color: #0a0f1a;
    font-weight: 500;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Advanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 152, 10, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo:hover {
    transform: scale(1.05) translateY(-2px);
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: width 0.3s ease;
}

.nav-logo:hover h2::after {
    width: 100%;
}

.nav-logo span {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-logo:hover span {
    opacity: 1;
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--light-slate);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 120%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.hamburger:hover {
    background: var(--lighter-gold);
    transform: scale(1.05);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Enhanced Hero Section */
.hero,
.page-header,
.hero-section {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-header::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%23f0b700" stroke-width="0.4" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
    opacity: 0.6;
}

.hero::after,
.page-header::after,
.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 183, 0, 0.1) 0%, rgba(201, 152, 10, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--medium-slate);
    margin-bottom: 2rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--light-slate) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    animation: expandHeroLine 2s ease-out 0.8s forwards;
}

.hero-tagline {
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, var(--secondary-gold), transparent);
    opacity: 0.6;
}

.hero-tagline span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--primary-gold); /* Fallback color */
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 3px 20px rgba(240, 183, 0, 0.25);
    flex-shrink: 0; /* Prevents text from wrapping */
}

@keyframes expandHeroLine {
    to { width: 150px; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem; 
    line-height: 1.8;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::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: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    box-shadow: 0 8px 25px var(--shadow-medium);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-heavy);
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 70%, #ffff8d 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-gold);
    border: 2px solid var(--secondary-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--lighter-gold);
    border-color: var(--primary-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    width: 400px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 25px 80px var(--shadow-heavy);
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid rgba(240, 183, 0, 0.3);
    border-radius: 20%;
    animation: heroGraphicPulse 6s ease-in-out infinite;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border: 1px solid rgba(250, 255, 109, 0.2);
    border-radius: 50%;
    animation: heroGraphicPulse 8s ease-in-out infinite reverse;
}

.hero-graphic img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

@keyframes heroGraphicFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-25px) scale(1.02); }
}

@keyframes heroGraphicPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Floating accent elements */
.accent-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.7;
    animation: accentFloat 6s ease-in-out infinite;
}

.hero .accent-dot:nth-child(1) {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero .accent-dot:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero .accent-dot:nth-child(3) {
    width: 10px;
    height: 10px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes accentFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

/* Enhanced Clients & Partners Section */
.clients-partners {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.clients-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="clients-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23clients-pattern)"/></svg>');
}

.clients-partners h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -1px;
}

.clients-partners h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.clients-partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}

.slider-track {
    display: flex;
    animation: clientSlide 25s linear infinite;
    gap: 3rem;
    align-items: center;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.1);
    min-width: 220px;
    height: 120px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-light);
    border-color: var(--secondary-gold);
}

.client-logo img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

@keyframes clientSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

/* Enhanced Features Section */
.features {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="features-hexagon" width="60" height="52" patternUnits="userSpaceOnUse"><polygon points="30,3 50,17 50,43 30,57 10,43 10,17" fill="none" stroke="%23f0b700" stroke-width="0.6" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23features-hexagon)"/></svg>');
    opacity: 0.7;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -1.5px;
}

.features .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.features h2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 3px;
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.12) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px var(--shadow-light);
    border-color: rgba(240, 183, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    transform: scale(1);
}

.feature-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.12) 0%, rgba(240, 183, 0, 0.12) 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.18) 0%, rgba(240, 183, 0, 0.18) 100%);
}

.feature-card i {
    font-size: 4rem;
    color: var(--primary-gold);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    color: var(--secondary-gold);
    transform: scale(1.15) rotate(8deg);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-gold);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--light-slate);
}

/* Staggered animation delays */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

/* Floating decorative elements */
.features-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(250, 255, 109, 0.12) 0%, rgba(240, 183, 0, 0.08) 100%);
    filter: blur(50px);
    animation: featuresFloat 10s ease-in-out infinite;
}

.features-decoration:nth-child(1) {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.features-decoration:nth-child(2) {
    bottom: 15%;
    right: -8%;
    animation-delay: 5s;
}

@keyframes featuresFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Enhanced Services Preview */
.services-preview {
    padding: 140px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%23f0b700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23services-dots)"/></svg>');
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.services-preview h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -1.5px;
}

.services-preview .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-preview h2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 3px;
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.12) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.service-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px var(--shadow-light);
    border-color: rgba(240, 183, 0, 0.4);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover::after {
    transform: scale(1);
}

.service-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.12) 0%, rgba(240, 183, 0, 0.12) 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-item:hover .service-icon::before {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.18) 0%, rgba(240, 183, 0, 0.18) 100%);
}

.service-item i {
    font-size: 4rem;
    color: var(--primary-gold);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-item:hover i {
    color: var(--secondary-gold);
    transform: scale(1.15) rotate(-8deg);
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: var(--primary-gold);
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: var(--light-slate);
}

.text-center {
    text-align: center;
    margin-top: 4rem;
}

/* Enhanced CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--medium-slate) 70%, #1a2332 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23faff6d" opacity="0.12"/><circle cx="5" cy="5" r="0.8" fill="%23f0b700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaFloat 15s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, white 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    font-size: 1.1rem;
    padding: 1.5rem 3rem;
    border: 2px solid var(--accent-gold);
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 70%, #ffff8d 100%);
    color: var(--dark-slate);
    transform: translateY(-5px) scale(1.05);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-slate) 0%, #070d1a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0b700" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-section ul li a:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--medium-slate);
    color: var(--light-gray);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: left 0.3s ease;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2.5rem;
    text-align: center;
    color: var(--light-gray);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
      .hero-tagline {
        gap: 0;
        align-items: center;
        text-align: center;
    }
    .hero-tagline::before,
    .hero-tagline::after {
        display: none; /* Hide lines on mobile for a cleaner look */
    }
    .hero-tagline span {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .hero-graphic {
        width: 250px;
        height: 250px;
    }

    .features h2,
    .services-preview h2,
    .cta h2,
    .clients-partners h2 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .slider-track {
        gap: 2rem;
    }

    .client-logo {
        min-width: 180px;
        height: 100px;
        padding: 1.5rem 2rem;
    }

    .client-logo img {
        max-width: 140px;
        max-height: 60px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-card,
    .service-item {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
        visibility: hidden;
    }

    .features h2,
    .services-preview h2,
    .cta h2,
    .clients-partners h2 {
        font-size: 2rem;
    }

    .feature-card,
    .service-item {
        padding: 2.5rem 2rem;
    }

    .clients-partners {
        padding: 80px 0;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
    }
}

/* Advanced Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading states */
.loading {
    opacity: 0;
    animation: loadingFadeIn 1.5s ease-out 0.3s forwards;
}

@keyframes loadingFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.links {
    color: inherit;
    margin-left : 10px;
}

.links a {
    margin-left: 10px;
    background: inherit;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;

    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: left 0.3s ease;
}

.links a:hover::before {
    left: 0;
}

.links a:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

























/* About Page */
@keyframes headerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--light-slate) 30%, var(--primary-gold) 70%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    animation: slideInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.header-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: translateX(-50%);
    animation: expandHeaderLine 2s ease-out 1s forwards;
    border-radius: 3px;
}

@keyframes expandHeaderLine {
    to { width: 200px; }
}

.header-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: slideInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}

.header-decoration {
    width: 150px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow-medium);
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.header-decoration::before,
.header-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--secondary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.header-decoration::before {
    left: -20px;
}

.header-decoration::after {
    right: -20px;
}

/* Enhanced Section Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 50px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
}

.section-badge::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: left 0.8s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    position: relative;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Enhanced About Content */
.about-content {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 3px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(255, 251, 240, 0.8) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: var(--lighter-gold);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: rgba(240, 183, 0, 0.4);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-item span {
    font-weight: 700;
    color: var(--light-slate);
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 100px var(--shadow-heavy);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-graphic:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 40px 120px var(--shadow-ultra);
}

.about-graphic::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 20%;
    opacity: 0.15;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

.about-graphic::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 20%;
    opacity: 0.08;
    z-index: -2;
}

.about-graphic img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

/* Enhanced Market Trends Section */
.market-trends {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.market-trends::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trends-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23f0b700" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="%23c9980a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23trends-pattern)"/></svg>');
}

.trends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trends-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--secondary-gold);
}

.number-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.number-badge span {
    position: relative;
    z-index: 1;
}

.trends-list {
    list-style: none;
    margin: 3rem 0;
}

.trends-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.trends-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.trends-list li:hover::after {
    transform: scaleY(1);
}

.trends-list li:hover {
    background: var(--white);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-light);
    border-color: rgba(240, 183, 0, 0.4);
}

.trends-list li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: 900;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-gold);
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--shadow-light);
    flex-shrink: 0;
}

.trends-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trends-graphic {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 100px var(--shadow-heavy);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.trends-graphic:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 40px 120px var(--shadow-ultra);
}

.trends-graphic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 40px;
    opacity: 0.2;
    z-index: -1;
    animation: morphing 6s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { border-radius: 40px; }
    50% { border-radius: 60px; }
}

.trends-graphic img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

/* Enhanced Mobile Section */
.mobile-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="2" height="2" fill="%23f0b700" opacity="0.06"/><rect x="20" y="20" width="2" height="2" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-pattern)"/></svg>');
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-graphic {
    width: 350px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 100px var(--shadow-heavy);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-graphic:hover {
    transform: scale(1.08);
    box-shadow: 0 40px 120px var(--shadow-ultra);
}

.mobile-graphic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 50px;
    opacity: 0.15;
    z-index: -1;
    animation: mobileGlow 4s ease-in-out infinite;
}

@keyframes mobileGlow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}

.mobile-graphic img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

.mobile-text h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.mobile-quote {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 100%);
    padding: 3rem;
    border-radius: 25px;
    border-left: 6px solid var(--secondary-gold);
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-gray);
    position: relative;
    box-shadow: 0 15px 40px var(--shadow-light);
    backdrop-filter: blur(10px);
}

.mobile-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: var(--primary-gold);
    font-family: serif;
    opacity: 0.4;
}

.mobile-quote::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.1;
}

/* Enhanced Mission & Vision */
.mission-vision {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mission-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 35,20 50,15 40,30 50,45 35,40 25,55 15,40 0,45 10,30 0,15 15,20" fill="%23f0b700" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-pattern)"/></svg>');
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
}

.mv-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 183, 0, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: scale(0);
}

.mv-card:hover::after {
    transform: scale(1);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.mv-card:hover .mv-icon::before {
    animation: iconShimmer 1.5s ease-in-out;
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(15deg);
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.mv-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mv-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Enhanced Team Stats */
.team-stats {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%23f0b700" opacity="0.08"/><circle cx="8" cy="8" r="0.8" fill="%23c9980a" opacity="0.05"/><circle cx="27" cy="8" r="0.8" fill="%23c9980a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 70%, rgba(255, 251, 240, 0.9) 100%);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 183, 0, 0.15) 0%, transparent 70%);
    transition: all 0.8s ease;
    transform: scale(0) rotate(0deg);
}

.stat-item:hover::before {
    transform: scale(1) rotate(180deg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(201, 152, 10, 0.2);
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 700;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Values */
.values {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="values-pattern" width="45" height="45" patternUnits="userSpaceOnUse"><path d="M22.5,5 L30,15 L40,10 L35,22.5 L45,30 L32.5,35 L30,45 L22.5,35 L10,40 L15,27.5 L5,20 L17.5,15 Z" fill="%23f0b700" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 183, 0, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.08), transparent);
    transition: left 0.8s;
}

.value-card:hover::after {
    left: 100%;
}

/* .value-card:hover {
    transform: translateY(-18px) scale(1.02);
    box-shadow: 0 30px 80px var(--shadow-light);
} */

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    to { transform: rotate(360deg); }
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-15deg);
}

.value-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-grid,
    .trends-content,
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .trends-graphic,
    .about-graphic {
        width: 320px;
        height: 320px;
    }

    .mobile-graphic {
        width: 280px;
        height: 200px;
    }

    .about-text h2,
    .trends-text h2,
    .mobile-text h2 {
        font-size: 2.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mv-card {
        min-width: auto;
        padding: 3rem 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .trends-text h2,
    .mobile-text h2 {
        font-size: 2rem;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
    }

    .mv-card {
        padding: 2.5rem 2rem;
    }

    .value-card {
        padding: 3rem 2.5rem;
    }
}


























/* Services Page */
.hero-section {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23f0b700" stroke-width="0.4" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
    opacity: 0.6;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 183, 0, 0.1) 0%, rgba(201, 152, 10, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid var(--secondary-gold);
    color: var(--primary-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 40px rgba(201, 152, 10, 0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.2), transparent);
    transition: left 0.8s;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem); 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--light-slate) 30%, var(--primary-gold) 70%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    animation: slideInUp 0.8s ease-out 0.4s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: translateX(-50%);
    animation: expandHeroLine 2s ease-out 1s forwards;
    border-radius: 3px;
}

@keyframes expandHeroLine {
    to { width: 200px; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: slideInUp 0.8s ease-out 0.6s both;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 152, 10, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    transform: scale(1);
}

.stat-number-small {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-badge-star {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 50px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
}

.section-badge-star::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: left 0.8s;
}

.section-badge-star:hover::before {
    left: 100%;
}

.section-badge-star::after {
    content: '✨';
    font-size: 1.2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Services Section */
.services-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 152, 10, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.08) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 35px 90px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1);
}

.service-icon-grid {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-icon-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-grid::before {
    left: 0;
}

.service-icon-grid i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-card:hover .service-icon-grid {
    transform: scale(1.1) rotate(8deg);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: var(--primary-gold);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(255, 251, 240, 0.8) 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    font-weight: 500;
    color: var(--text-gray);
    border: 1px solid rgba(240, 183, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.service-features li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.service-features li:hover::after {
    left: 100%;
}

.service-features li:hover {
    background: var(--lighter-gold);
    transform: translateX(10px) scale(1.02);
    color: var(--primary-gold);
    border-color: rgba(240, 183, 0, 0.3);
}

/* Enhanced Target Customers Section */
.target-customers {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.target-customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="customers-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23f0b700" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="%23c9980a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23customers-pattern)"/></svg>');
}

.target-customers .container {
    position: relative;
    z-index: 1;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
}

.customer-type {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 152, 10, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.customer-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.customer-type::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.customer-type:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 30px 80px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.customer-type:hover::before {
    transform: scaleX(1);
}

.customer-type:hover::after {
    transform: scale(1);
}

.customer-type i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.customer-type:hover i {
    transform: scale(1.2) rotate(8deg);
}

.customer-type h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.customer-type:hover h3 {
    color: var(--primary-gold);
}

.customer-type p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 140px 0;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23f0b700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    padding: 1.8rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 70%, #ffff8d 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px var(--shadow-ultra);
    color: var(--medium-slate);
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .logo-text {
        margin-top: 5px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card,
    .customer-type {
        padding: 3rem 2.5rem;
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .customer-type {
        padding: 2.5rem 2rem;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
    }
}





















/*Solutions Page*/
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

@keyframes expandHeroLine {
    to { width: 200px; }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    padding: 1.8rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 70%, #ffff8d 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px var(--shadow-ultra);
    color: var(--medium-slate);
}

/* Enhanced Solutions Section */
.solutions-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="solutions-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23solutions-pattern)"/></svg>');
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    margin-bottom: 12rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.solution-number {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 3px solid var(--secondary-gold);
    transition: all 0.4s ease;
    z-index: 3;
}

.solution-item:hover .solution-number {
    transform: scale(1.1) rotate(8deg);
}

.solution-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    transition: color 0.3s ease;
}

.solution-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.solution-item:hover .solution-title {
    color: var(--primary-gold);
}

.solution-item:hover .solution-title::after {
    width: 120px;
}

.solution-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.solution-features {
    margin-bottom: 3.5rem;
}

.solution-features h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-features h4::before {
    content: '✨';
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(201, 152, 10, 0.3));
}

.feature-item-check {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(255, 251, 240, 0.8) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(240, 183, 0, 0.1);
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    overflow: hidden;
}

.feature-item-check::before {
    content: '✓';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 16px var(--shadow-light);
}

.feature-item-check::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item-check:hover::after {
    left: 100%;
}

.feature-item-check:hover {
    background: var(--lighter-gold);
    transform: translateX(12px) scale(1.02);
    color: var(--primary-gold);
    border-color: rgba(240, 183, 0, 0.3);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.features-grid-check {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover::after {
    left: 100%;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 70%, #ffff8d 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.solution-cta:hover::before {
    left: 0;
}

.solution-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-heavy);
    color: var(--medium-slate);
}

.solution-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.solution-graphic {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 25px 80px var(--shadow-heavy);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.solution-graphic::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 3px solid rgba(240, 183, 0, 0.2);
    border-radius: 20%;
    animation: pulse 8s ease-in-out infinite;
}

.solution-graphic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 20%;
    transform: translate(-50%, -50%);
}

.solution-graphic img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
    transition: all 0.4s ease;
}


.solution-item:hover .solution-graphic img {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

/* Enhanced Benefits Section */
.benefits-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23f0b700" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="%23c9980a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-pattern)"/></svg>');
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 152, 10, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    transform-origin: left;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.benefit-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 30px 80px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    transform: scale(1);
}

.benefit-card i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(8deg);
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--primary-gold);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .solution-item {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        margin-bottom: 8rem;
    }

    .solution-item.reverse {
        direction: ltr;
    }

    .solution-graphic {
        width: 320px;
        height: 320px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solution-number {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
    }

    .solution-content {
        padding: 1rem;
    }

    .solution-visual {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .solution-graphic {
        width: 280px;
        height: 280px;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
    }

    .solution-item {
        gap: 3rem;
        margin-bottom: 6rem;
    }
}



























/*Industries Page*/
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

@keyframes expandHeroLine {
    to { width: 200px; }
}

/* Enhanced Industries Section */
.industries-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="industries-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23industries-pattern)"/></svg>');
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.industry-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 152, 10, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 255, 109, 0.08) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.8s ease;
    border-radius: 50%;
}

.industry-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 35px 90px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover::after {
    transform: scale(1);
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.industry-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-icon::before {
    left: 0;
}

.industry-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(8deg);
}

.industry-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover h3 {
    color: var(--primary-gold);
}

.industry-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.industry-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.industry-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(255, 251, 240, 0.8) 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    font-weight: 500;
    color: var(--text-gray);
    border: 1px solid rgba(240, 183, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.industry-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.industry-features li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 183, 0, 0.1), transparent);
    transition: left 0.6s;
}

.industry-features li:hover::after {
    left: 100%;
}

.industry-features li:hover {
    background: var(--lighter-gold);
    transform: translateX(10px) scale(1.02);
    color: var(--primary-gold);
    border-color: rgba(240, 183, 0, 0.3);
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .customers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .industry-card,
    .customer-type {
        padding: 3rem 2.5rem;
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-card,
    .customer-type {
        padding: 2.5rem 2rem;
    }

    .nav-logo h2 {
        font-size: 1.7rem;
    }
}




























/*Projects Page*/
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

/* Advanced Filter System */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    border: 2px solid rgba(201, 152, 10, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 152, 10, 0.3);
}

/* Enhanced Projects Section */
.projects-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="projects-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23projects-pattern)"/></svg>');
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.project-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 152, 10, 0.1);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(201, 152, 10, 0.2);
    border-color: rgba(201, 152, 10, 0.3);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-image {
    /* height: 280px; */
    /* width: 400px; */
    size: 90%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><path d="M25 15v20M15 25h20" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech)"/></svg>');
}

.project-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 3rem 2.5rem;
    position: relative;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-category {
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.15) 0%, rgba(240, 183, 0, 0.1) 100%);
    color: var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 152, 10, 0.2);
    transition: all 0.3s ease;
}

.project-category:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.project-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.project-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.project-status.ongoing {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.project-status.ongoing:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.project-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.project-card:hover .project-title {
    color: var(--primary-gold);
}

.project-card:hover .project-title::after {
    width: 80px;
}

.project-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 152, 10, 0.1) 0%, rgba(240, 183, 0, 0.05) 100%);
    transition: left 0.3s ease;
}

.feature-tag:hover::before {
    left: 0;
}

.feature-tag:hover {
    border-color: rgba(201, 152, 10, 0.3);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 152, 10, 0.1);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(201, 152, 10, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--secondary-gold);
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.project-link:hover::before {
    left: 0;
}

.project-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 152, 10, 0.4);
    color: var(--medium-slate);
}

.project-date {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.project-date:hover {
    background: linear-gradient(135deg, var(--lighter-gold) 0%, rgba(255, 251, 240, 0.8) 100%);
    border-color: rgba(201, 152, 10, 0.2);
    color: var(--primary-gold);
}

/* Enhanced CTA Section */
.cta-section-background {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-section-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 152, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 183, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23f0b700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-content {
        padding: 2rem 1.5rem;
    }

    .project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .project-link {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.7rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}





















/*Contact Page*/
.page-header {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23f0b700" stroke-width="0.4" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23header-grid)"/></svg>');
    opacity: 0.6;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 183, 0, 0.1) 0%, rgba(201, 152, 10, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: headerFloat 20s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--light-slate) 30%, var(--primary-gold) 70%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    animation: slideInUp 0.8s ease-out 0.2s both;
    position: relative;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
    transform: translateX(-50%);
    animation: expandHeaderLine 2s ease-out 1s forwards;
    border-radius: 3px;
}

@keyframes expandHeaderLine {
    to { width: 200px; }
}

.page-header p {
    font-size: 1.5rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    animation: slideInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}
/* Enhanced Contact Section */
.contact-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23f0b700" opacity="0.06"/><circle cx="10" cy="10" r="0.8" fill="%23c9980a" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    position: relative;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    border-radius: 3px;
}

.contact-info > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 152, 10, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--medium-slate);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.6;
}

.social-links-contact h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--medium-slate);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    transition: left 0.3s ease;
}

.social-icons a:hover::before {
    left: 0;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

/* Enhanced Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 152, 10, 0.1);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 70%, var(--accent-gold) 100%);
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--medium-slate);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--medium-slate);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(201, 152, 10, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--success-green);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    accent-color: var(--primary-gold);
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-heavy);
    color: var(--medium-slate);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced FAQ Section */
.faq-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--lighter-gold) 30%, #fff9e6 70%, #fffef7 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23f0b700" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="%23c9980a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--medium-slate) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    text-align: center;
    position: relative;
}

.faq-section h2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 152, 10, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-light);
    border-color: rgba(201, 152, 10, 0.3);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--medium-slate);
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    padding-right: 2rem;
}

.faq-item h4::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.faq-item.active h4::after {
    content: '\f068';
    transform: rotate(180deg);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

/* Advanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Styles */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--success-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-red);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.send-message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 2px solid var(--secondary-gold);
}

.send-message-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--accent-gold) 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.send-message-btn:hover::before {
    left: 0;
}

.send-message-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-heavy);
    color: var(--medium-slate);
}

.send-message-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-text {
        margin-top: 5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        padding: 4rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

