/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.team-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #06b6d4;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --medium-gray: #9ca3af;
    --dark-gray: #4b5563;
    --error-color: #dc2626;
    --success-color: #059669;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', 'Tajawal', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
    overflow-x: hidden;
    text-align: right;
    direction: rtl;
}

/* Container */
.container {
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 100;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        font-weight: normal;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.75;
}

/* Buttons */
.btn-primary {
    margin-top: 5px;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.btn-outline {
    background: transparent;
    color: #06b6d4;
    border: 2px solid #06b6d4;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Badge */
.badge {
    display: inline-block;
    background: #cffafe;
    color: #0e7490;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Gradients */
.gradient-blue-cyan {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-cyan-teal {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.gradient-green-teal {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-orange-red {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.gradient-purple-pink {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.gradient-indigo-blue {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.gradient-teal-cyan {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.gradient-cyan-blue {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 3rem;
    width: auto;
}

.logo-text h1 {
    font-size: 1.125rem;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #06b6d4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.cta-btn {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #cffafe 50%, #ccfbf1 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M10 0L0 0 0 10" fill="none" stroke="%23000" stroke-opacity="0.03"%3E%3C/path%3E%3C/svg%3E');
    opacity: 0.4;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    margin-top: 1rem;
    background: linear-gradient(to right, #2563eb, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
}

.hero-decoration {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator svg {
    color: #9ca3af;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Services Section */
.services {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 12rem;
    background-size: cover;
    background-position: center;
}

.service-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.service-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-content > p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

/* Why Choose Us */
.why-choose {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #2563eb, #06b6d4, #14b8a6);
    color: white;
}

.why-grid {
    display: grid;
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.why-item h3 {
    margin-bottom: 0.75rem;
}

.why-item p {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 4rem 1rem;
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-text {
    color: #4b5563;
    margin-bottom: 1rem;
}

.vision-mission {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.vision-card,
.mission-card {
    padding: 1.5rem;
    border-radius: 1rem;
}

.vision-card {
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.mission-card {
    background: linear-gradient(135deg, #cffafe, #ccfbf1);
}

.vision-card h3,
.mission-card h3 {
    background: linear-gradient(to right, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.vision-card p,
.mission-card p {
    color: #4b5563;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-stat-card {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-top: 1rem;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stat-text {
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.team-grid {
    
    display: grid;
    gap: 1.5rem;
    border-radius: 10px;
}
.team-border {
    border-radius: 1rem;
}


.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 10rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.linkedin {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.facebook {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.twitter {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827, #1f2937, #111827);
    color: white;
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 3.5rem;
    width: auto;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
}

.footer-logo-text p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-about p {
    color: #9ca3af;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22d3ee;
}

.footer-links li.divider {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #374151;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .logo img {
        height: 3.5rem;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .cta-btn,
    .desktop-only {
        display: inline-flex;
    }

    .hero {
        padding: 0rem 2rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .hero-content {
        text-align: right;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-decoration {
        display: block;
        position: absolute;
        width: 18rem;
        height: 18rem;
        border-radius: 1.5rem;
        z-index: -1;
    }

    .decoration-1 {
        bottom: -1.5rem;
        right: -1.5rem;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    }

    .decoration-2 {
        top: -1.5rem;
        left: -1.5rem;
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
    }

    .services,
    .why-choose,
    .about,
    .team,
    .contact {
        padding: 6rem 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-stat-card {
        position: absolute;
        bottom: -1.5rem;
        left: -1.5rem;
        max-width: 24rem;
        margin-top: 0;
    }

    .vision-mission {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .logo img {
        height: 4rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}
/* تحسينات الأداء */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* التحميل الكسول للصور */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.loaded {
  opacity: 1;
}

/* تحسينات الطباعة */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-btn.whatsapp { background-color: #25D366; }
.social-btn.telegram { background-color: #0088cc; }
.social-btn.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.facebook { background-color: #1877F2; }

.social-btn:hover {
  transform: scale(1.1);
}

.contact-details a {
  text-decoration: none; /* يشيل الخط */
  color: inherit;        /* يخلي اللون نفس النص */
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #007bff; /* لون بسيط عند المرور بالماوس (اختياري) */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.02);
    }
    50% {
        transform: translateY(5px) rotate(-2deg) scale(0.98);
    }
    75% {
        transform: translateY(-10px) rotate(2deg) scale(1.01);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
    }
    50% {
        filter: 
            drop-shadow(0 0 20px rgba(99, 102, 241, 0.7))
            drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
    }
}

.hero-image {
    display: inline-block;
    animation: float 8s ease-in-out infinite;
    transform-origin: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    animation: glow 5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    animation: glow 2s ease-in-out infinite;
    transform: scale(1.08);
    filter: 
        drop-shadow(0 0 15px rgba(59, 130, 246, 0.7))
        drop-shadow(0 0 25px rgba(99, 102, 241, 0.5));
}