/* Global Styles */
:root {
    /* New Color Palette */
    --primary-color: #7C3AED; /* Vibrant Purple */
    --secondary-color: #10B981; /* Emerald Green */
    --accent-color: #F59E0B; /* Amber */
    --gradient-1: linear-gradient(135deg, #7C3AED 0%, #10B981 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-3: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
    
    /* Dark Theme Colors */
    --dark-bg: #0F172A; /* Slate 900 */
    --dark-bg-light: #1E293B; /* Slate 800 */
    --dark-bg-lighter: #334155; /* Slate 700 */
    
    /* Text Colors */
    --heading-color: #F8FAFC; /* Slate 50 */
    --text-color: #CBD5E1; /* Slate 300 */
    --text-muted: #64748B; /* Slate 500 */
    
    /* Border Colors */
    --border-color: rgba(148, 163, 184, 0.1); /* Slate 400 with opacity */
    
    /* Shadow Colors */
    --shadow-color: rgba(15, 23, 42, 0.3);
    --shadow-color-light: rgba(15, 23, 42, 0.1);
    
    /* Success/Error Colors */
    --success-color: #10B981; /* Emerald 500 */
    --error-color: #EF4444; /* Red 500 */
    
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    animation: gradientMove 20s ease infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
    animation: patternMove 30s linear infinite;
}

body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-primary);
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

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

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
    border: 3px solid var(--dark-bg-light);
    border-top: 3px solid var(--primary-color);
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-inner::before,
.loader-inner::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader-inner::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--secondary-color);
    animation: spin 2s linear infinite;
}

.loader-inner::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--accent-color);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    color: var(--heading-color);
}

.navbar-brand .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.7rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.contact-btn {
    background: var(--gradient-1);
    border-radius: 30px;
    padding: 0.7rem 1.8rem !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

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

.company-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Cards */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.05;
}

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* .contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0.03;
    animation: rotate 20s linear infinite;
} */

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

.form-control {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.5;
    transform: translateY(-5px);
}

.form-control:hover:not(:focus) {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.6);
}

/* Textarea specific styles */
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Input group styles */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group .form-control {
    padding-left: 3rem;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.input-group .form-control:focus + i {
    color: var(--primary-color);
}

/* Form label styles */
.form-label {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

/* Form feedback styles */
.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Form group spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Form section styles */
.form-section {
    background: rgba(30, 41, 59, 0.3);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

/* Form button styles */
.form-btn {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: var(--gradient-3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

/* Form animation styles */
@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-control.is-invalid {
    animation: formShake 0.5s ease-in-out;
}

/* Form success animation */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.form-control.is-valid {
    animation: formSuccess 0.5s ease-in-out;
}

/* Form focus animation */
.form-control:focus {
    transform: translateY(-2px);
}

/* Form disabled state */
.form-control:disabled {
    background: rgba(30, 41, 59, 0.2);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Form required field indicator */
.required-field::after {
    content: '*';
    color: var(--error-color);
    margin-left: 4px;
}

/* Form help text */
.form-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Form checkbox and radio styles */
.form-check-input {
    background-color: rgba(30, 41, 59, 0.5);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
}

/* Form select styles */
.form-select {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.form-select:focus {
    background-color: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

/* Form file input styles */
.form-control[type="file"] {
    padding: 0.5rem;
    line-height: 1.5;
}

.form-control[type="file"]::file-selector-button {
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 10px;
    margin-right: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-control[type="file"]::file-selector-button:hover {
    background: var(--gradient-3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--darker-bg);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-section {
        text-align: center;
    }
    
    .display-1 {
        font-size: 3.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .display-1 {
        font-size: 2.8rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--dark-bg), var(--dark-bg-light));
}

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

.about-image-stack {
    position: relative;
    height: 600px;
}

.image-stack-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-stack-item-1 {
    width: 80%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-stack-item-2 {
    width: 70%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.image-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: var(--gradient-2);
    padding: 20px;
    border-radius: 15px;
    color: white;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text-content {
    padding: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.feature-content p {
    color: var(--text-color);
    margin: 0;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Services Section Styles */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-content {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary-color);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
}

.service-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-details p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-image-stack {
        height: 500px;
        margin-bottom: 50px;
    }

    .image-stack-item-1 {
        width: 90%;
        height: 350px;
    }

    .image-stack-item-2 {
        width: 80%;
        height: 300px;
    }

    .experience-badge {
        left: 30px;
        bottom: 30px;
    }

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

@media (max-width: 767px) {
    .about-image-stack {
        height: 400px;
    }

    .image-stack-item-1 {
        width: 100%;
        height: 300px;
    }

    .image-stack-item-2 {
        width: 90%;
        height: 250px;
    }

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

    .stats-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575px) {
    .about-image-stack {
        height: 350px;
    }

    .image-stack-item-1 {
        height: 250px;
    }

    .image-stack-item-2 {
        height: 200px;
    }

    .experience-badge {
        padding: 15px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-bg-light);
    border-top: 1px solid var(--border-color);
}

.social-links a {
    color: var(--text-color);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Notification Styles */
.notification {
    background: var(--dark-bg-light);
    border-left: 4px solid var(--primary-color);
}

.notification.success {
    border-left-color: var(--success-color);
}

.notification.error {
    border-left-color: var(--error-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    background: var(--dark-bg);
    border-left: 1px solid var(--border-color);
}

.mobile-menu .nav-link {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu .nav-link:hover {
    background: rgba(124, 58, 237, 0.1);
}

/* Scroll to Top Button */
.scroll-top {
    background: var(--gradient-1);
    color: white;
}

.scroll-top:hover {
    background: var(--gradient-3);
}

/* Custom Cursor Styles */
.custom-cursor {
    border: 2px solid var(--primary-color);
}

.custom-cursor-dot {
    background: var(--primary-color);
}

/* Particles Styles */
/* #particles-js {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
} */

/* Stats Counter Styles */
.counter {
    color: var(--primary-color);
}

/* Portfolio Filter Styles */
.portfolio-filter button {
    color: var(--text-color);
}

.portfolio-filter button.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
}

.testimonial-author {
    color: var(--heading-color);
}

.testimonial-position {
    color: var(--text-muted);
}

/* Contact Info Styles */
.contact-info-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
}

.contact-info-item:hover {
    border-color: var(--primary-color);
}

.contact-info-item i {
    color: var(--primary-color);
}

/* Animation Styles */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

/* Why Choose Us Section Styles */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--heading-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Achievement Card Styles */
.achievement-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-content h3 {
    color: var(--heading-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonial Highlight Styles */
.testimonial-highlight {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .achievement-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        text-align: left;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-badges {
        justify-content: center;
    }
    
    .quote-author {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section Styles */
.contact-section {
    background: var(--dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(108, 99, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.contact-info-card .info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.contact-info-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-info-card p.text-muted {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.contact-form .btn-primary {
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form .btn-primary {
        padding: 0.8rem 1.5rem;
    }
} 