#monithq-coming-soon {
    background: var(--gradient-primary);
    padding: 5rem 0 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-xl);
    border-radius: 32px;
    margin: 3rem auto;
    max-width: 900px;
    border: 4px solid var(--secondary-color);
    position: relative;
    z-index: 2;
}

#monithq-coming-soon .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#monithq-coming-soon h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(79,70,229,0.2);
}

#monithq-coming-soon p.lead {
    font-size: 1.4rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

#monithq-coming-soon .badge {
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #fff;
}
/* MonitHQ Coming Soon Section */
#monithq-coming-soon {
    background: var(--light-surface);
    padding: 5rem 0 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#monithq-coming-soon .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#monithq-coming-soon h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#monithq-coming-soon p.lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

#monithq-coming-soon .badge {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}
/* Makvishan Technology Portfolio - Modern Dark Theme */

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #f59e0b;
    --accent-color: #06d6a0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --dark-bg: #0f0f23;
    --dark-card: #1a1a2e;
    --dark-surface: #16213e;
    --light-bg: #ffffff;
    --light-surface: #f8fafc;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-muted: #6b7280;
    
    --border-color: #e2e8f0;
    --border-dark: #374151;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ea580c);
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #059669);
    --gradient-hero: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, #16213e 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(245, 158, 11, 0.1);
}

.nav-link.active {
    color: var(--secondary-color) !important;
    background: rgba(245, 158, 11, 0.15);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    padding-top: 120px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title .text-primary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    background: var(--gradient-secondary);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: white;
}

/* Floating Cards Animation */
.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    text-align: center;
    position: absolute;
    animation: float 8s ease-in-out infinite;
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.floating-card:nth-child(1) {
    top: 5%;
    left: 0%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 40%;
    right: 0%;
    animation-delay: 2.5s;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 5s;
}

.floating-card h5 {
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

/* Section Styling */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* About Section */
#about {
    background: var(--light-surface);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.about-content {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 24px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.about-image img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-2xl);
}

/* Service Cards */
#services {
    background: var(--light-bg);
    position: relative;
}

.service-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-accent);
}

.service-card h4 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.service-features li {
    padding: 1rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li:hover {
    color: var(--text-primary);
    padding-left: 3rem;
}

/* Portfolio */
#portfolio {
    background: var(--dark-bg);
    color: var(--text-white);
    position: relative;
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
}

#portfolio .section-title {
    color: var(--text-white);
}

#portfolio .section-title::after {
    background: var(--gradient-secondary);
}

#portfolio .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
}

.portfolio-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.95;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15);
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-content h5 {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.portfolio-content .btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Why Choose Us Section */
.bg-primary {
    background: var(--gradient-hero) !important;
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
}

.bg-primary .container {
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-item i {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.feature-item h6 {
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Testimonials */
#testimonials {
    background: var(--light-surface);
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-content {
    margin-bottom: 2.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.testimonial-author h6 {
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author small {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Section */
#contact {
    background: var(--dark-bg);
    position: relative;
    color: var(--text-white);
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
}

#contact .container {
    position: relative;
    z-index: 1;
}

#contact h2 {
    font-weight: 900;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(15px);
    box-shadow: var(--shadow-xl);
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    min-width: 24px;
}

.contact-item h6 {
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-2xl);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
    color: white;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
footer {
    background: #020617 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

footer p {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.4s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card {
        position: static;
        margin: 1.5rem auto;
        animation: none;
        max-width: 280px;
    }
    
    .hero-image {
        margin-top: 4rem;
        height: auto;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        margin-top: 3rem;
        padding: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* Loading Animations */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.3s; }
.portfolio-item:nth-child(3) { animation-delay: 0.5s; }

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

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

/* Enhanced Interactions */
.btn, .service-card, .portfolio-item, .testimonial-card, .contact-item, .stat-item {
    cursor: pointer;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .hero-buttons, .contact-form {
        display: none;
    }
    
    .hero-section {
        background: white;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-title {
        color: black;
    }
}