/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.5), 0 0 40px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.5);
    }
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes scan-line {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes holographic {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(10px, -10px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Utility Classes */
.cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.05) 2px, transparent 2px),
        linear-gradient(rgba(220, 38, 38, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    pointer-events: none;
}

.grid-background {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(transparent, rgba(220, 38, 38, 0.8), transparent);
    animation: scan-line 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-text {
    text-shadow: 
        0 0 10px rgba(220, 38, 38, 0.8),
        0 0 20px rgba(220, 38, 38, 0.6),
        0 0 30px rgba(220, 38, 38, 0.4),
        0 0 40px rgba(220, 38, 38, 0.2);
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.8), transparent);
    pointer-events: none;
    animation: particle-float 3s ease-in-out infinite;
    width: 8px;
    height: 8px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    will-change: transform;
}

.glow-orb-1 {
    top: 10%;
    right: 10%;
    width: 384px;
    height: 384px;
    background: #dc2626;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
}

.glow-orb-2 {
    bottom: 10%;
    left: 10%;
    width: 384px;
    height: 384px;
    background: #3b82f6;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.glow-orb-3 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #dc2626;
    mix-blend-mode: screen;
    opacity: 0.1;
}

.glow-orb-4 {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #3b82f6;
    mix-blend-mode: screen;
    opacity: 0.1;
}

.glow-orb-5 {
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: #dc2626;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
}

.glow-orb-6 {
    top: 25%;
    right: 0;
    width: 384px;
    height: 384px;
    background: #a855f7;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.glow-orb-7 {
    top: 50%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #a855f7;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
}

.glow-orb-8 {
    bottom: 0;
    right: 33%;
    width: 384px;
    height: 384px;
    background: #dc2626;
    mix-blend-mode: screen;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.glow-orb-9 {
    top: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #dc2626;
    mix-blend-mode: screen;
    opacity: 0.1;
}

.glow-orb-10 {
    bottom: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #3b82f6;
    mix-blend-mode: screen;
    opacity: 0.1;
}

.mouse-follower {
    position: fixed;
    width: 384px;
    height: 384px;
    background: #ef4444;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 1s ease;
    z-index: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FIX: Tagline visibility - ADD THIS */
.tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8; /* Light gray for visibility */
    letter-spacing: 0.5px;
    display: block;
}

.header .tagline {
    color: #cbd5e1; /* Slightly lighter for header */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

/* END FIX */

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #f87171;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
}

.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background: #f87171;
    position: relative;
    transition: all 0.3s;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #f87171;
    transition: all 0.3s;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

.mobile-menu-btn.active .menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #f87171;
}

/* Buttons */
.btn-primary {
    position: relative;
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ef4444, #dc2626);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.btn-glow {
    animation: glow 3s ease-in-out infinite;
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover .btn-shine {
    transform: translateX(100%);
    transition: transform 1s;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.8);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.btn-ghost.btn-red {
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-ghost.btn-red:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
}

.btn-ghost.btn-blue {
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.btn-ghost.btn-blue:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.6);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    background-color: #0f172a;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fade-in 0.6s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f87171;
    width: fit-content;
}

.pulse-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse-dot 2s ease-out infinite;
}

.sparkle-icon {
    color: #f87171;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #fca5a5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.75;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    transition: all 0.3s;
}

.feature-pill-red {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.feature-pill-red:hover {
    border-color: rgba(239, 68, 68, 0.6);
}

.feature-pill-blue {
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.feature-pill-blue:hover {
    border-color: rgba(59, 130, 246, 0.6);
}

.feature-pill svg {
    flex-shrink: 0;
    color: #f87171;
    transition: transform 0.3s;
}

.feature-pill-blue svg {
    color: #60a5fa;
}

.feature-pill:hover svg {
    transform: scale(1.1);
}

.feature-title {
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
        animation: float 6s ease-in-out infinite;
    }
}

.holographic-card {
    position: relative;
    width: 100%;
    height: 600px;
}

.card-ring {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    border: 2px solid;
    animation: pulse-ring 4s ease-in-out infinite;
}

.card-ring-1 {
    border-color: rgba(239, 68, 68, 0.3);
}

.card-ring-2 {
    inset: 1rem;
    border-color: rgba(59, 130, 246, 0.2);
    animation-duration: 3s;
    animation-delay: 0.5s;
}

.card-content {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(220, 38, 38, 0.2), transparent, rgba(59, 130, 246, 0.2));
}

.icon-container {
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(40px);
}

.icon-glow-red {
    background: rgba(239, 68, 68, 0.3);
}

.icon-glow-blue {
    background: rgba(59, 130, 246, 0.3);
}

.icon-glow-purple {
    background: rgba(168, 85, 247, 0.3);
}

.icon-large {
    position: relative;
    color: #f87171;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.8));
}

.icon-container:nth-child(3) .icon-large {
    color: #60a5fa;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
}

.card-corner {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border: 2px solid #ef4444;
}

.card-corner-tl {
    top: 1rem;
    left: 1rem;
    border-right: none;
    border-bottom: none;
}

.card-corner-tr {
    top: 1rem;
    right: 1rem;
    border-left: none;
    border-bottom: none;
}

.card-corner-bl {
    bottom: 1rem;
    left: 1rem;
    border-right: none;
    border-top: none;
}

.card-corner-br {
    bottom: 1rem;
    right: 1rem;
    border-left: none;
    border-top: none;
}

/* Section Styles */
section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.services {
    background-color: #0f172a;
}

.why-choose-us {
    background-color: #1e293b;
}

.testimonials {
    background-color: #1e293b;
}

.contact {
    background-color: #0f172a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f87171;
    margin-bottom: 1.5rem;
}

.section-badge svg {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #fca5a5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.holographic-border {
    position: relative;
    background: linear-gradient(45deg, #dc2626, #ef4444, #f87171, #dc2626);
    background-size: 300% 300%;
    animation: holographic 5s ease infinite;
    padding: 2px;
    border-radius: 1rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s;
    animation: fade-in 0.6s ease-out;
}

.service-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transform: translateY(-8px);
}

.service-card[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.service-card[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.service-card[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

.service-card[data-aos-delay="400"] {
    animation-delay: 0.4s;
}

.service-card[data-aos-delay="500"] {
    animation-delay: 0.5s;
}

.service-icon {
    position: relative;
    display: inline-flex;
    margin-bottom: 1rem;
}

.icon-glow-container {
    position: relative;
}

.icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1rem;
    transition: all 0.3s;
}

.icon-box svg {
    color: #f87171;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
    transition: transform 0.3s;
}

.icon-box-blue {
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-box-blue svg {
    color: #60a5fa;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

.icon-box-purple {
    border-color: rgba(168, 85, 247, 0.3);
}

.icon-box-purple svg {
    color: #a78bfa;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.service-card:hover .icon-box {
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.1);
}

.service-card:hover .icon-box svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.service-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission {
    background-color: #1e293b;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s;
    animation: fade-in 0.6s ease-out;
}

.mission-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.mission-icon svg {
    color: #f87171;
}

.mission-card:hover .mission-icon {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.1);
}

.mission-card p {
    color: #cbd5e1;
    line-height: 1.75;
    transition: color 0.3s;
}

.mission-card:hover p {
    color: #f8fafc;
}

.team-description {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    animation: fade-in 0.6s ease-out;
}

.team-description p {
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.team-description p:last-child {
    margin-bottom: 0;
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s;
    animation: fade-in 0.6s ease-out;
}

.benefit-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.benefit-icon {
    position: relative;
    display: inline-flex;
    margin: 0 auto 1.5rem;
}

.benefit-icon .icon-box {
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon .icon-box {
    transform: scale(1.1);
    border-color: rgba(239, 68, 68, 0.6);
}

.benefit-card:hover .icon-glow {
    filter: blur(60px);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-title {
    color: #f87171;
}

.benefit-description {
    color: #94a3b8;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-description {
    color: #cbd5e1;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.5s;
    animation: fade-in 0.6s ease-out;
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.testimonial-card .card-corner {
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover .card-corner {
    opacity: 1;
}

.quote-icon {
    color: rgba(239, 68, 68, 0.3);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.testimonial-card:hover .quote-icon {
    color: rgba(239, 68, 68, 0.5);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars svg {
    color: #ef4444;
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.6));
}

.testimonial-text {
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.testimonial-card:hover .testimonial-text {
    color: #f8fafc;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Contact Section */
.contact-grid-center {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info-full {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper .card-inner {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: calc(1rem - 2px);
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f8fafc;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
    resize: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    animation: fade-in 0.6s ease-out;
}

.info-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.info-card-large {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s;
    animation: fade-in 0.6s ease-out;
}

.info-card-large:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transform: translateY(-8px);
}

.info-card-large .info-icon {
    display: inline-flex;
    margin-bottom: 2rem;
}

.info-card-large .info-icon .icon-box {
    width: 5rem;
    height: 5rem;
}

.info-card-large .info-icon .icon-box svg {
    width: 2.5rem;
    height: 2.5rem;
}

.info-icon {
    position: relative;
}

.info-icon .icon-box {
    width: 3rem;
    height: 3rem;
}

.info-content h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.info-card-large:hover .info-content h4 {
    color: #f87171;
}

.info-content p {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.75;
    transition: color 0.3s;
}

.info-card-large:hover .info-content p {
    color: #f8fafc;
}

.email-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.email-link:hover {
    color: #3b82f6;
}

/* Footer */
.footer {
    position: relative;
    background-color: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.75;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.footer-badge svg {
    color: #f87171;
}

.footer-badge:nth-child(2) {
    border-color: rgba(59, 130, 246, 0.3);
}

.footer-badge:nth-child(2) svg {
    color: #60a5fa;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.2s;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #f87171;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #94a3b8;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: rgba(239, 68, 68, 0.5);
    color: #f87171;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 0.5rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 2000;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.toast-content svg {
    flex-shrink: 0;
    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.toast-title {
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(239, 68, 68, 1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

/* Logo link */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-link:hover .logo-icon {
    color: #f87171;
}

.logo-link:hover .logo-text {
    background: linear-gradient(to right, #f87171, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Trust indicators text adjustment */
.trust-item span {
    color: #cbd5e1 !important; /* Light gray for better visibility */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    /* Mobile logo adjustments */
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-text-container {
        display: none; /* Hide tagline on mobile to save space */
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626, #ef4444);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}