:root {
    --color-graphite: #1a1a2e;
    --color-midnight: #0f0f1d;
    --color-deep-navy: #0c0c17;
    --color-teal: #00bcd4;
    --color-violet: #8e2de2;
    --color-rose: #ff4081;
    --color-text-light: #e0e0e0;
    --color-text-dark: #a0a0a0;
    --color-accent-gradient: linear-gradient(90deg, var(--color-teal), var(--color-violet), var(--color-rose));
    --color-bg-gradient: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-graphite) 100%);
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --padding-section: 6rem 8%;
    --card-border-radius: 12px;
    --glow-effect: 0 0 8px rgba(0, 188, 212, 0.6), 0 0 16px rgba(142, 45, 226, 0.4);
    --hover-transition: all 0.3s ease-in-out;
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background: var(--color-bg-gradient);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
p { font-size: 1.1rem; margin-bottom: 1rem; color: var(--color-text-dark); }
a { color: var(--color-teal); text-decoration: none; }
a:hover { color: var(--color-violet); text-decoration: underline; }

.section-padding {
    padding: var(--padding-section);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.mt-4 {
    margin-top: 2rem;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(12, 12, 23, 0.8); /* Deep navy with transparency */
    padding: 1.2rem 8%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2); /* Subtle teal line */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-light);
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: var(--hover-transition);
    text-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

.logo a:hover {
    text-shadow: var(--glow-effect);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: var(--hover-transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--color-accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section - Parallax Scroll */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(0); /* For parallax effect */
    will-change: transform;
    filter: brightness(0.5) blur(3px); /* Darken and blur for content visibility */
    transition: filter 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text-container {
    background: rgba(12, 12, 23, 0.7); /* Deep navy with transparency */
    padding: 3rem;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: var(--glow-effect);
    text-align: center;
    max-width: 800px;
}

.hero-text-container h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.7);
}

.hero-text-container p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.floating-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.card-float {
    background: rgba(26, 26, 46, 0.8); /* Graphite with transparency */
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(142, 45, 226, 0.2);
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.3);
    text-align: left;
    max-width: 300px;
    animation: float 6s ease-in-out infinite alternate;
    transition: var(--hover-transition);
}

.card-float:nth-child(2) { animation-delay: 0.5s; }
.card-float:nth-child(3) { animation-delay: 1s; }

.card-float:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--glow-effect);
    border-color: rgba(0, 188, 212, 0.5);
}

.card-float h3 {
    font-size: 1.6rem;
    color: var(--color-teal);
    margin-bottom: 0.75rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

/* Mission Section - Card Grid */
.mission-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
    margin-bottom: 1.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mission-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 64, 129, 0.2); /* Rose accent border */
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.2);
    transition: var(--hover-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-effect);
    border-color: rgba(0, 188, 212, 0.5);
}

.mission-card img {
    width: 100%;
    max-width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 188, 212, 0.3);
    box-shadow: 0 0 5px rgba(0, 188, 212, 0.2);
    transition: var(--hover-transition);
}

.mission-card:hover img {
    border-color: var(--color-violet);
    box-shadow: 0 0 10px var(--color-violet);
}

.mission-card h3 {
    color: var(--color-violet);
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1rem;
    color: var(--color-text-dark);
}

/* Solutions Section - Step by Step */
.solutions-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(142, 45, 226, 0.4);
    margin-bottom: 1.5rem;
}

.step-by-step-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
}

.step-by-step-layout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-teal), var(--color-violet), var(--color-rose), transparent);
    z-index: 0;
    transform: translateY(-50%);
}

.step-item {
    background: rgba(15, 15, 29, 0.9); /* Midnight with transparency */
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--hover-transition);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
    border-color: rgba(255, 64, 129, 0.5);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -50px auto 1.5rem auto;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-light);
    border: 3px solid var(--color-midnight);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.7);
    transition: var(--hover-transition);
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
}

.step-item h3 {
    color: var(--color-teal);
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: var(--color-text-dark);
}

/* Services Section - Pricing Table */
.services-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
    margin-bottom: 1.5rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(142, 45, 226, 0.2);
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--hover-transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(142, 45, 226, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--hover-transition);
    opacity: 1;
}

.pricing-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--glow-effect);
    border-color: rgba(0, 188, 212, 0.5);
}

.pricing-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-teal);
}

.price-header {
    margin-bottom: 2rem;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--color-accent-gradient);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--color-text-light);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.featured-card {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--color-teal);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.5);
    z-index: 5;
    background: rgba(15, 15, 29, 0.95);
}

.featured-card h3 {
    color: var(--color-rose);
}
.featured-card .price-tag {
    background: linear-gradient(90deg, var(--color-rose), var(--color-violet));
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7);
}

.pricing-footer p {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-top: 1rem;
}

/* Gallery Section - Slideshow */
.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
    margin-bottom: 1.5rem;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    border: 2px solid rgba(142, 45, 226, 0.3);
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.4);
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slide-text {
    color: var(--color-text-light);
    font-size: 1.5rem;
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    font-family: var(--font-heading);
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.prev, .next {
    cursor: pointer;
    padding: 16px;
    color: var(--color-text-light);
    font-weight: bold;
    font-size: 2.5rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;.8;
}

.prev { left: 0; border-radius: 0 3px 3px 0; }
.next { right: 0; border-radius: 3px 0 0 3px; }

.prev:hover, .next:hover {
    background-color: rgba(0, 188, 212, 0.8);
    opacity: 1;
    box-shadow: var(--glow-effect);
}

/* Custom arrows for prev/next */
.prev::before { content: '‹'; }
.next::before { content: '›'; }


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.slide-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: var(--color-teal);
    box-shadow: 0 0 8px var(--color-teal);
}

/* Portfolio/Gallery - Interactive Showcase */
.showcase-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
    margin-bottom: 1.5rem;
}

.interactive-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-border-radius);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
    transition: var(--hover-transition);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 15, 29, 0.9));
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: height 0.6s ease;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.showcase-item:hover .overlay {
    height: 100%;
    padding: 1.5rem;
}

.overlay h3 {
    color: var(--color-teal);
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.overlay p {
    color: var(--color-text-dark);
    font-size: 1rem;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.showcase-item:hover .overlay h3,
.showcase-item:hover .overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Clients Section - Video Testimonials (using image placeholders) */
.clients-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(142, 45, 226, 0.4);
    margin-bottom: 1.5rem;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(15, 15, 29, 0.9);
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
    padding: 2.5rem;
    text-align: center;
    transition: var(--hover-transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
    border-color: rgba(255, 64, 129, 0.5);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-teal);
    transition: var(--hover-transition);
}
.testimonial-card:hover .video-placeholder {
    border-color: var(--color-violet);
    box-shadow: 0 0 15px var(--color-violet);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.6s ease;
}

.video-placeholder:hover img {
    filter: brightness(0.6);
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-rose), var(--color-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--color-text-light);
    margin-left: 5px; /* Adjust to center the triangle */
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-effect);
}

.testimonial-card h3 {
    color: var(--color-rose);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    flex-grow: 1; /* Allows it to take up available space */
}

.client-name {
    font-weight: 600;
    color: var(--color-teal);
    display: block;
    margin-top: 1rem;
}

/* Team Section - Slider Carousel */
.team-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
    margin-bottom: 1.5rem;
}

.team-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.team-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding-bottom: 2rem; /* Space for controls */
}

.team-member-card {
    flex: 0 0 calc(33.333% - 2rem); /* 3 cards per row, account for gap */
    margin: 0 1rem; /* Half of the gap on each side */
    background: rgba(15, 15, 29, 0.9);
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 64, 129, 0.2);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.2);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--hover-transition);
    min-width: 300px; /* Ensure minimum width for smaller screens */
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
    border-color: rgba(0, 188, 212, 0.5);
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--color-violet);
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.5);
    transition: var(--hover-transition);
}

.team-member-card:hover img {
    border-color: var(--color-teal);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.7);
}

.team-member-card h3 {
    color: var(--color-teal);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-member-card .role {
    font-size: 1.1rem;
    color: var(--color-violet);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-card .bio {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 2rem;
    pointer-events: none; /* Allow clicks on content */
}

.carousel-button {
    background: linear-gradient(90deg, var(--color-teal), var(--color-violet));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-text-light);
    box-shadow: var(--glow-effect);
    transition: var(--hover-transition);
    z-index: 10;
    pointer-events: all; /* Make buttons clickable */
    opacity: 1;.7;
}

.carousel-button:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-rose), 0 0 25px var(--color-violet);
}

.carousel-button.prev-btn::before { content: '‹'; }
.carousel-button.next-btn::before { content: '›'; }

/* Newsletter Section - Inline Form (Stylized Placeholder) */
.newsletter-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
    margin-bottom: 1.5rem;
}

.inline-newsletter-form {
    background: rgba(15, 15, 29, 0.95);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    border: 1px solid rgba(142, 45, 226, 0.3);
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.4);
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.inline-newsletter-form p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.newsletter-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* For responsiveness */
}

.placeholder-input {
    flex-grow: 1;
    max-width: 400px;
    background-color: var(--color-graphite);
    border: 1px solid var(--color-teal);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    text-align: left;
    transition: var(--hover-transition);
    box-shadow: inset 0 0 5px rgba(0, 188, 212, 0.2);
}

.placeholder-input:hover {
    border-color: var(--color-violet);
    box-shadow: inset 0 0 10px rgba(142, 45, 226, 0.4);
}

.cta-button {
    background: var(--color-accent-gradient);
    color: var(--color-text-light);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hover-transition);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
    font-family: var(--font-heading);
    text-decoration: none; /* In case it becomes an anchor */
    display: inline-block; /* For anchor styling */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-effect);
    filter: brightness(1.1);
}

/* Support Section - Side by Side */
.support-section h2 {
    text-align: center;
    font-size: 3rem;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
    margin-bottom: 1.5rem;
}

.side-by-side-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-panel,
.map-info-panel {
    background: rgba(26, 26, 46, 0.9);
    border-radius: var(--card-border-radius);
    padding: 3.5rem;
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
    transition: var(--hover-transition);
}

.contact-info-panel:hover,
.map-info-panel:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-effect);
    border-color: rgba(142, 45, 226, 0.5);
}

.contact-info-panel h3,
.map-info-panel h3 {
    color: var(--color-teal);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p,
.map-info-panel p {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 1.2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 1rem;
}

.info-value {
    color: var(--color-violet);
    font-size: 1rem;
}

.support-note {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--color-midnight);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-rose);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.3);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.7);
}

.map-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-text-light);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    font-size: 0.95rem;
    max-width: 80%;
}
.location-details {
    margin-top: 2rem;
}


/* Footer */
.main-footer {
    background-color: var(--color-deep-navy);
    padding: 3rem 8%;
    text-align: center;
    color: var(--color-text-dark);
    border-top: 1px solid rgba(255, 64, 129, 0.2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    .nav-links { gap: 1.5rem; }
    .hero-content { padding: 0 5%; }
    .card-grid, .step-by-step-layout, .pricing-table, .interactive-showcase, .video-testimonials-grid, .side-by-side-layout {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    .team-member-card {
        flex: 0 0 calc(50% - 2rem); /* 2 cards per row */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .main-nav { flex-direction: column; gap: 1.5rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .logo a { font-size: 1.8rem; }
    .hero-content { flex-direction: column; gap: 1.5rem; padding-top: 8rem; }
    .hero-text-container { padding: 2rem; }
    .hero-text-container h1 { font-size: 2.8rem; }
    .hero-text-container p { font-size: 1.1rem; }
    .floating-cards { flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
    .card-float { max-width: 90%; width: 100%; }
    .section-padding { padding: 4rem 5%; }
    .section-description { font-size: 1rem; margin-bottom: 2rem;}

    .card-grid, .step-by-step-layout, .pricing-table, .interactive-showcase, .video-testimonials-grid, .side-by-side-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .step-by-step-layout::before {
        content: none; /* Remove horizontal line on mobile */
    }
    .step-item { padding: 2rem; }
    .step-number { margin: -40px auto 1rem auto; width: 50px; height: 50px; font-size: 1.8rem; }
    .pricing-card.featured-card { transform: translateY(0) scale(1.02); } /* Less dramatic on mobile */

    .slideshow-controls { padding: 0 1rem; }
    .prev, .next { font-size: 2rem; padding: 10px; }
    .slide-text { font-size: 1.2rem; }
    .dot { width: 12px; height: 12px; }

    .team-carousel-container { padding: 1rem 0; }
    .team-carousel { margin: 0 auto; width: 100%; justify-content: center; }
    .team-member-card { flex: 0 0 90%; margin: 0 1rem; max-width: 350px; } /* Single card per view */
    .carousel-controls { padding: 0; }
    .carousel-button { width: 40px; height: 40px; font-size: 1.5rem; }
    .carousel-button.prev-btn { left: 5px; }
    .carousel-button.next-btn { right: 5px; }

    .inline-newsletter-form { padding: 2rem; margin: 2rem auto; }
    .newsletter-action { flex-direction: column; gap: 1rem; }
    .placeholder-input { max-width: 100%; }
    .cta-button { width: 100%; max-width: 300px; padding: 1rem 1.5rem; }

    .contact-info-panel, .map-info-panel { padding: 2.5rem; }
    .map-text { font-size: 0.85rem; }
}

/* Accessibility (Focus States) */
a:focus, button:focus, .dot:focus, .carousel-button:focus, .card-float:focus, .mission-card:focus, .step-item:focus, .pricing-card:focus, .showcase-item:focus, .testimonial-card:focus, .team-member-card:focus, .placeholder-input:focus {
    outline: 2px solid var(--color-rose);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(255, 64, 129, 0.4);
}


javascript
/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Enhanced: Missing animation classes from JS */
.animate-on-scroll {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-on-load {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-in-on-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
