
/* =========================
   Synagen Systems — Electric Blue Theme
   ========================= */
:root {
  /* Core Palette */
  --synagen-bg: #0a0f1c;           /* deep space */
  --synagen-bg-2: #0e1a2b;         /* slightly lighter */
  --synagen-card: #0f1e33;         /* surfaces */
  --synagen-text: #2288ff;         /* high contrast text */
  --synagen-text-dim: #a9c0e6;     /* secondary text */

  /* Electric Blue Accents */
  --synagen-primary: #00d1ff;      /* electric blue */
  --synagen-primary-600: #00b3e0;  
  --synagen-primary-700: #0099c7;
  --synagen-glow: 0 0 24px rgba(0, 209, 255, 0.35);

  /* Gradients */
  --synagen-hero-grad: radial-gradient(1200px 600px at 70% -10%, rgba(0,209,255,0.18), transparent 60%),
                       radial-gradient(1000px 600px at 20% 120%, rgba(0,153,199,0.22), transparent 60%),
                       linear-gradient(180deg, #0a0f1c 0%, #0e1a2b 60%, #0a0f1c 100%);

  /* Misc */
  --radius-xl: 18px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
}

/* Reset and Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
	background: var(--synagen-hero-grad);
}

/* Base */
html, body { background: var(--synagen-bg); color: var(--synagen-text); }
.centre {
  justify-content:center;
  align-items:center;
}

a { color: var(--synagen-primary); text-decoration: none; }
a:hover { color: var(--synagen-primary-600); text-shadow: var(--synagen-glow); }

.btn-primary {
  background: var(--synagen-primary);
  color: #051320;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .3s ease, background .3s ease;
}
.btn-primary:hover { background: var(--synagen-primary-600); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,209,255,.35); }

/* Hero section example (update your selectors accordingly) */
.hero {
  background: var(--synagen-hero-grad);
}
.hero h1, .hero .title { color: var(--synagen-text); 
    background: linear-gradient(135deg, #ffffff 0%, #2288ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	}
.hero .subtitle { color: var(--synagen-text-dim); }

.card { background: var(--synagen-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }

/* Navigation */
.navbar { background: rgba(5, 14, 26, 0.75); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 209, 255, 0.08); }
.navbar a { color: var(--synagen-text); }
.navbar a.active, .navbar a:hover { color: var(--synagen-primary); }

/* Logo refinements */
.logo { height: 40px; filter: drop-shadow(0 0 6px rgba(0,209,255,.25)); }

/* =========================
   Intro Video Overlay Styles
   ========================= */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(60% 60% at 50% 40%, rgba(0,209,255,0.12), rgba(10,15,28,0.88)), #050b14;
  animation: overlay-in .45s ease-out both;
}
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

.intro-video {
  width: min(72vw, 1280px);
  max-height: 72vh;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 209, 255, 0.18), 0 8px 28px rgba(0,0,0,.5);
}

/* Skip button */
.intro-skip {
  position: absolute; right: 20px; bottom: 20px;
  background: rgba(0, 209, 255, 0.15);
  color: var(--synagen-text);
  border: 1px solid rgba(0, 209, 255, 0.35);
  padding: 10px 14px; border-radius: 999px; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .15s ease;
}
.intro-skip:hover { background: rgba(0, 209, 255, 0.28); transform: translateY(-1px); }

/* Fade‑out animation when intro completes */
.fade-out { animation: overlay-out .6s ease-in forwards; }
@keyframes overlay-out { to { opacity: 0; visibility: hidden; } }

/* Utility tweaks for sections so the new palette shines */
.section { padding: 72px 0; }
.section h2 { color: var(--synagen-text); }
.section p { color: var(--synagen-text-dim); }

/* Buttons in cards */
.card .btn-primary { background: var(--synagen-primary-700); }
.card .btn-primary:hover { background: var(--synagen-primary); }
```

---

## Notes

* If your previous theme used purple gradient backgrounds on the hero, make sure the hero container has the `.hero` class (or copy the gradient into your selector).
* Confirm your animated logo video path in the `<source>` tag. For best results, encode H.264 MP4 and keep the first frame clean (no black flash). Autoplay requires **muted**.
* For Core Web Vitals, the overlay is removed from the DOM after fading so it won’t keep assets alive or block interactions.
* If you want the intro to run **only once per user**, add a `localStorage` gate around the script:

```js
if (!localStorage.getItem('synagenIntroSeen')) {
  // run intro; when finished:
  localStorage.setItem('synagenIntroSeen', '1');
}
```

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #6b2a8b 0%, #4b2a8a 20%, #2b1a55 40%, #1a1a33 60%, #333333 100%);
    background-size: 200% 200%;
    animation: slowWave 13s ease-in-out infinite;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(174, 112, 255, 0.2) 10%, 
        transparent 50%, 
        rgba(133, 113, 230, 0.06) 75%, 
        transparent 100%);
    background-size: 300% 300%;
    animation: waveFlow 10s ease-in-out infinite;
    filter: blur(1px);
}

.wave1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
    background: radial-gradient(ellipse at 20% 30%, rgba(174, 112, 255, 0.12) 0%, transparent 60%);
    animation: waveFlow 18s ease-in-out infinite;
}

.wave2 {
    top: 0;
    right: 0;
    animation-delay: -10s;
    background: radial-gradient(ellipse at 80% 70%, rgba(94, 26, 163, 0.1) 0%, transparent 65%);
    animation: waveFlow 20s ease-in-out infinite;
}

.wave3 {
    bottom: 0;
    left: 0;
    animation-delay: -20s;
    background: radial-gradient(ellipse at 50% 20%, rgba(133, 113, 230, 0.08) 0%, transparent 70%);
    animation: waveFlow 22s ease-in-out infinite;
}

@keyframes slowWave {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 25% 75%;
    }
}

@keyframes waveFlow {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(-1%) translateY(1%) scale(1.02);
        opacity: 0.8;
    }
    50% {
        transform: translateX(1%) translateY(-1%) scale(0.98);
        opacity: 0.7;
    }
    75% {
        transform: translateX(-0.5%) translateY(0.5%) scale(1.01);
        opacity: 0.9;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2288ff;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2288ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2288ff;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-container {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-title-purple {
    color: #2288ff;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2288ff 0%, #6a5acd 100%);
    color: #ffffff;
    border: 2px solid #2288ff;
}

.btn-primary:hover {
    background: transparent;
    color: #2288ff;
    border-color: #2288ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: --synagen-primary;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.3);
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.4);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #2288ff;
    box-shadow: 0 10px 20px rgba(139, 69, 255, 0.2);
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}
.clinic-feature-card {
    background: #e0e0e0;
    border: 1px solid #5050C0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.clinic-feature-card:hover {
    transform: translateY(-5px);
    border-color: #2288ff;
    box-shadow: 0 10px 20px rgba(139, 69, 255, 0.2);
}

.clinic-feature-card h4 {
    color: #101010;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.clinic-feature-card p {
    color: #505050;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #2288ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 69, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 255, 0.2);
}

.stat h4 {
    font-size: 2.5rem;
    color: #2288ff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #2288ff;
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-features span {
    background: rgba(139, 69, 255, 0.2);
    color: #2288ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    // background: rgba(0, 0, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: #2288ff;
    box-shadow: 0 15px 30px rgba(139, 69, 255, 0.2);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #2288ff 0%, #6a5acd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags span {
    background: rgba(139, 69, 255, 0.2);
    color: #2288ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2288ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #cccccc;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: rgba(139, 69, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
	max-width: 800px;
}

.form-group label {
    display: block;
    color: #DDDDDD;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #eeeeee;
    border: 1px solid rgba(139, 69, 255, 0.3);
    border-radius: 10px;
    color: #444444;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2288ff;
    box-shadow: 0 0 0 3px rgba(139, 69, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(139, 69, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2288ff;
}

.footer-section h3,
.footer-section h4 {
    color: #2288ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2288ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 69, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #2288ff;
    border-color: #2288ff;
    background: rgba(139, 69, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 255, 0.2);
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Service Page Styles */
.service-hero {
    text-align: center;
    padding: 2rem 0;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #2288ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.service-details {
    padding: 80px 0;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.service-description > p {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.service-description h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 2rem 0;
    color: #2288ff;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #2288ff;
    box-shadow: 0 10px 20px rgba(139, 69, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

.service-technologies {
    margin: 4rem 0;
}

.service-technologies h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2288ff;
    text-align: center;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    // background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.tech-category h4 {
    color: #2288ff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tags span {
    background: rgba(139, 69, 255, 0.2);
    color: #2288ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(139, 69, 255, 0.3);
}

.service-process {
    margin: 4rem 0;
}

.service-process h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2288ff;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #2288ff;
    box-shadow: 0 10px 20px rgba(139, 69, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2288ff 0%, #6a5acd 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.process-step h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 20px;
}

.service-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-description h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 2rem;
    }
    
    /* Photo comparison responsive */
    .photo-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photo-comparison .feature-card img {
        height: 400px;
    }
    
    .photo-comparison .feature-card:hover img {
        transform: scale(1.5);
    }
    
    .image-modal-content {
        max-width: 95%;
        max-height: 80%;
        min-width: 250px;
        max-width: 600px;
    }
    
    .image-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .video-modal-content {
        width: 95%;
        height: 60%;
        max-height: 400px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .youtube-thumbnail::after {
        font-size: 3rem;
        width: 60px;
        height: 60px;
    }
}

/* Photo Enhancement Image Styles */
.photo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.photo-comparison .feature-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.photo-comparison .feature-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.photo-comparison .feature-card:hover {
    z-index: 10;
}

.photo-comparison .feature-card:hover img {
    transform: scale(1.8);
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.4);
    border-radius: 15px;
    z-index: 10;
    position: relative;
    border: 3px solid rgba(139, 69, 255, 0.3);
}

/* Ensure other cards don't interfere with expanded images */
.photo-comparison .feature-card:not(:hover) {
    transition: all 0.3s ease;
}

.photo-comparison .feature-card:not(:hover) img {
    transition: all 0.3s ease;
}

/* Image Modal for Full Size View */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    min-width: 300px;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.image-modal-close:hover {
    color: #2288ff;
}

/* YouTube Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 70%;
    max-height: 500px;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
}

.video-modal-close:hover {
    color: #2288ff;
}

/* YouTube Thumbnail Styles */
.youtube-thumbnail {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover {
    transform: scale(1.05);
}

.youtube-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover::after {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Content Placeholder Styles */
.content-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(139, 69, 255, 0.4);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.content-placeholder h2 {
    color: #2288ff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-placeholder p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-placeholder ul {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    color: #cccccc;
}

.content-placeholder li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.content-placeholder li::marker {
    color: #2288ff;
}
