/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #C41E3A;
    --primary-dark: #8B0000;
    --primary-light: #E84A5F;
    --secondary: #D4AF37;
    --secondary-light: #F4C542;
    --secondary-dark: #B8960F;
    --accent: #9A7B4F;
    --accent-light: #C4A67D;
    --success: #00C853;
    --info: #2196F3;
    --warning: #FF9800;
    --dark: #0A0A1F;
    --darker: #050510;
    --light: #F5F5F7;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 215, 0, 0.15);
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-primary: 0 0 30px rgba(196, 30, 58, 0.3);
    --gradient-gold: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-primary: linear-gradient(135deg, var(--primary), #8B0000);
    --gradient-luxury: linear-gradient(135deg, var(--primary), var(--secondary), #8B0000);
    --gradient-dark: linear-gradient(180deg, var(--dark), var(--darker));
    --gradient-glass: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,215,0,0.02));
    --service-1: #FF6B6B;
    --service-2: #4ECDC4;
    --service-3: #FFE66D;
    --service-4: #A78BFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', 'Playfair Display', serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 20px);
    pointer-events: none;
    z-index: 0;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
    border: 2px solid var(--darker);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.luxury-loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    animation: luxury-loader 2s linear infinite;
}

.luxury-loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: var(--secondary);
    border-bottom-color: var(--primary);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.luxury-loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: var(--secondary-light);
    border-bottom-color: var(--primary-dark);
    animation-duration: 1s;
}

.luxury-loader-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 2s ease infinite;
}

@keyframes luxury-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-progress-container {
    width: 300px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.loading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.loading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: loading-shine 1.5s linear infinite;
}

@keyframes loading-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-screen.loading-complete {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px var(--secondary);
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
}

.logo-icon-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E84F4F, #FF7E5F);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    transform: rotate(10deg);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px -5px rgba(255, 126, 95, 0.3);
}

.logo-icon:hover .logo-icon-inner {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 126, 95, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.logo-text-sub {
    font-size: 0.8rem;
    color: #FF7E5F;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #E84F4F, #FF7E5F);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    width: 100%;
}

/* Luxury Button */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.btn-luxury:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px var(--primary), 0 0 30px var(--secondary);
}

.btn-luxury:hover::before {
    opacity: 1;
}

.btn-luxury:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-luxury i {
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-outline-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-luxury:hover {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--secondary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(50px) translateX(50px); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Hero Text */
.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.8rem;
    background: rgba(10, 10, 31, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
    animation: starTwinkle 2s ease infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 1px;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: badgeGlow 3s linear infinite;
}

@keyframes badgeGlow {
    0% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(360deg); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-typewriter {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
    min-height: 3rem;
    font-family: 'Cormorant Garamond', serif;
}

.typewriter-text {
    color: var(--secondary);
    font-weight: 600;
}

.typewriter-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
    margin-right: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
    position: relative;
    padding: 1rem 0;
}

.hero-description .highlight {
    color: var(--secondary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.description-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation: widthPulse 3s ease infinite;
}

@keyframes widthPulse {
    0%, 100% { width: 50px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.profile-ring-outer {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.profile-ring-outer::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    filter: blur(10px);
    opacity: 0.5;
    animation: pulseGlow 2s ease infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.profile-ring-middle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--darker);
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.profile-ring-middle::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(135deg, transparent, var(--secondary), transparent);
    animation: rotateLight 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotateLight {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 3px;
    position: relative;
}

.profile-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: var(--dark);
    border: 2px solid rgba(255,255,255,0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.profile-image-wrapper:hover::after {
    opacity: 1;
}

.profile-image-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-wrapper:hover .profile-image-glow {
    opacity: 1;
}

/* Floating Badges - رنگ‌های متفاوت */
.floating-badge {
    position: absolute;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 3s ease infinite;
    z-index: 10;
}

.floating-badge-gold {
    background: linear-gradient(135deg, var(--secondary), #FFD700);
}

.floating-badge-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.floating-badge-accent {
    background: linear-gradient(135deg, #00C853, #69F0AE);
}

.floating-badge.badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    top: 30%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-badge i {
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-content strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.badge-content span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ===== SECTION HEADERS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.section-subtitle span:not(.subtitle-line) {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.section-description {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.title-decoration {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.title-decoration i {
    color: var(--secondary);
    font-size: 0.8rem;
    animation: starPulse 2s ease infinite;
}

.title-decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.title-decoration i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}


/* ===== SERVICES SECTION ===== */
.services {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards - رنگ‌های متفاوت */
.service-card {
    perspective: 1500px;
    height: 420px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.service-card:hover .service-card-inner,
.service-card.active .service-card-inner {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-front {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-front-1 { border-bottom: 4px solid var(--service-1); }
.service-front-2 { border-bottom: 4px solid var(--service-2); }
.service-front-3 { border-bottom: 4px solid var(--service-3); }
.service-front-4 { border-bottom: 4px solid var(--service-4); }

.service-back {
    transform: rotateY(180deg);
    color: white;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.service-back-1 { background: linear-gradient(135deg, var(--service-1), #E55555); }
.service-back-2 { background: linear-gradient(135deg, var(--service-2), #3BA89E); }
.service-back-3 { background: linear-gradient(135deg, var(--service-3), #E5C530); }
.service-back-4 { background: linear-gradient(135deg, var(--service-4), #8B6FE3); }

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-front-1 .service-icon { background: linear-gradient(135deg, var(--service-1), #FF8A8A); }
.service-front-2 .service-icon { background: linear-gradient(135deg, var(--service-2), #6EE7DE); }
.service-front-3 .service-icon { background: linear-gradient(135deg, var(--service-3), #FFF099); }
.service-front-4 .service-icon { background: linear-gradient(135deg, var(--service-4), #C4B5FD); }

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 40px -10px currentColor;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: inherit;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.service-back h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.service-back-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    opacity: 0.95;
    flex-shrink: 0;
}

.service-back-highlight {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.service-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: inherit;
    margin-top: auto;
    flex-shrink: 0;
}

.service-link:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    animation: rotateSlow 40s linear infinite;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.swiper {
    width: 100%;
    padding: 2rem 0 !important;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 40px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 30px 60px -15px rgba(212, 175, 55, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    opacity: 0.3;
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 2rem 0 3rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary) !important;
    background: rgba(10, 10, 31, 0.5);
    backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: rgba(212, 175, 55, 0.3) !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 40px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateSlow 30s linear infinite;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transform: rotate(10deg);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.3);
}

.contact-info:hover .contact-info-avatar {
    transform: rotate(45deg) scale(1.1);
}

.contact-info-name h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-name p {
    color: var(--secondary);
    font-size: 1rem;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-10px);
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    transform: rotate(360deg);
}

.contact-detail-text h4 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-detail-text p {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    line-height: 1.6;
}

.contact-social {
    position: relative;
    z-index: 1;
}

.contact-social h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-10px);
    border-color: transparent;
    color: white;
}

.social-link:hover::before {
    opacity: 1;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 40px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    animation: rotateSlow 25s linear infinite reverse;
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-group i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea ~ i {
    top: 1.5rem;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    background: rgba(10, 10, 31, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(10, 10, 31, 0.9);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.form-control:focus + i {
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 0.95rem;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

select.form-control option {
    background: var(--darker);
    color: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--darker);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    transform: rotate(10deg);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
}

.footer-logo:hover .footer-logo-icon {
    transform: rotate(45deg);
}

.footer-logo-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.footer-logo-text p {
    font-size: 0.8rem;
    color: var(--secondary);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.footer-credit i {
    color: var(--primary);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: scale(0) rotate(180deg);
    box-shadow: 0 10px 30px -5px var(--primary);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px -5px var(--secondary);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.3s ease;
    direction: rtl;
}

.toast-success {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== ABOUT VIDEO ===== */
.about-video {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
}

.video-play-btn i {
    color: white;
    font-size: 2rem;
    margin-left: 3px;
}

.video-play-btn.hidden {
    display: none;
}

.video-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.5;
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.1), transparent);
}

.video-caption {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.video-caption i {
    color: var(--secondary);
    margin-left: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text { order: 2; }
    .hero-image { order: 1; }

    .hero-buttons { justify-content: center; }
    .hero-description { margin-left: auto; margin-right: auto; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        padding-left: 30% !important;
        padding-right: 30% !important;
    }

    .timeline-item:nth-child(even) {
        padding-left: 30% !important;
        padding-right: 30% !important;
    }

    .timeline-decoration { display: none; }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .floating-badge { display: none; }


    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-luxury, .btn-outline-luxury {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        perspective: 1500px;
        height: 450px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, .contact-form {
        padding: 2rem;
        max-width: 100%;  /* ← اضافه کن */
    }

    .contact-grid {
        gap: 1.5rem;  /* ← اضافه کن */
    }

    .form-control {
        padding: 0.8rem 1rem !important;  /* ← اضافه کن */
        font-size: 0.9rem !important;  /* ← اضافه کن */
    }

    .timeline-item, .timeline-item:nth-child(even) {
        padding-left: 20% !important;
        padding-right: 20% !important;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line {
        font-size: 2.5rem;
    }

    .logo-text-main { font-size: 1rem; }
    .logo-text-sub { font-size: 0.7rem; }
    .logo-icon { width: 45px; height: 45px; }

    .section-title { font-size: 2rem; }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }

    .experience-number { font-size: 2rem; }

    .university-badge {
        padding: 0.5rem 1rem;
        top: -20px;
        left: -20px;
    }

    .university-badge i { font-size: 1rem; }
    .university-badge span { font-size: 1.1rem; font-weight: 600; color: white; }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .hero-background, .scroll-progress, .back-to-top,
    .footer-social, .mobile-menu-btn, .loading-screen {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero, .about, .services, .achievements, .testimonials, .contact, .footer {
        padding: 2rem 0;
        background: white;
    }

    .gradient-text {
        color: black;
        background: none;
        -webkit-text-fill-color: black;
    }
}