@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

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

:root {
    --deep-black: #0A0E27;
    --electric-cyan: #00F0FF;
    --hot-pink: #FF006E;
    --dark-navy: #1A1F3A;
    --neon-purple: #8B00FF;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--deep-black);
    color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 240, 255, 0.03) 0px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 0;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0.8rem;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 0.7rem;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 0.6rem;
}

a {
    color: var(--electric-cyan);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: var(--hot-pink);
    text-shadow: 0 0 10px var(--hot-pink), 0 0 20px var(--hot-pink);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--deep-black) 100%);
    border-bottom: 2px solid var(--electric-cyan);
    box-shadow: 
        0 0 20px rgba(0,240,255,0.4),
        0 4px 30px rgba(0,0,0,0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0,240,255,0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

header:hover::before {
    opacity: 1;
    animation: headerShine 2s ease infinite;
}

@keyframes headerShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

header.hide {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    font-weight: 900;
    color: var(--electric-cyan);
    text-shadow: 
        0 0 10px var(--electric-cyan),
        0 0 20px var(--electric-cyan),
        0 0 30px var(--electric-cyan);
    letter-spacing: 3px;
    animation: logoPulse 3s ease-in-out infinite;
    position: relative;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 70px;
border-radius: 50%;

}
@keyframes logoPulse {
    0%, 100% { text-shadow: 0 0 10px var(--electric-cyan), 0 0 20px var(--electric-cyan); }
    50% { text-shadow: 0 0 20px var(--electric-cyan), 0 0 40px var(--electric-cyan), 0 0 60px var(--electric-cyan); }
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 10px var(--electric-cyan); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

nav a {
    font-size: 0.95em;
    font-weight: 600;
    padding: 8px 15px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}



.menu-toggle {
    display: none;
    background: var(--dark-navy);
    border: 2px solid var(--electric-cyan);
    color: var(--electric-cyan);
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,240,255,0.3);
}

.menu-toggle:hover {
    background: var(--electric-cyan);
    color: var(--deep-black);
    box-shadow: 0 0 20px var(--electric-cyan);
}

.hero {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,0,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 4s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    color: var(--electric-cyan);
    text-shadow: 
        0 0 20px var(--electric-cyan),
        0 0 40px var(--electric-cyan),
        0 0 60px rgba(0,240,255,0.5);
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: titleGlitch 5s infinite;
}

@keyframes titleGlitch {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-2px, 1px); }
    92% { transform: translate(2px, -1px); }
    93% { transform: translate(-1px, 2px); }
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #d0d0d0;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.hero-image {
    position: relative;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background: linear-gradient(135deg, var(--neon-purple), var(--hot-pink));
    padding: 3px;
    animation: imageFloat 6s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(139,0,255,0.5),
        0 0 60px rgba(255,0,110,0.3);
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--electric-cyan), var(--neon-purple), var(--hot-pink), var(--electric-cyan));
    background-size: 300% 300%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    filter: brightness(1.3) contrast(1.2) saturate(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
    color: var(--deep-black);
    font-weight: 700;
    font-size: 0.95em;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(0,240,255,0.5),
        0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    box-shadow: 
        0 0 40px var(--hot-pink),
        0 0 60px rgba(255,0,110,0.5),
        0 6px 20px rgba(0,0,0,0.4);
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--hot-pink);
    color: var(--hot-pink);
    box-shadow: 
        0 0 15px rgba(255,0,110,0.3),
        inset 0 0 15px rgba(255,0,110,0.1);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,0,110,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: var(--hot-pink);
    color: #fff;
    border-color: var(--hot-pink);
    box-shadow: 
        0 0 30px var(--hot-pink),
        0 0 50px rgba(255,0,110,0.5);
}

section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--electric-cyan);
    text-shadow: 
        0 0 15px var(--electric-cyan),
        0 0 30px rgba(0,240,255,0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before,
.section-title::after {
    content: '//';
    position: absolute;
    color: var(--hot-pink);
    font-size: 0.8em;
    opacity: 0.7;
}

.section-title::before {
    left: -30px;
}

.section-title::after {
    right: -30px;
}

.features {
    background: var(--dark-navy);
    border-top: 2px solid var(--neon-purple);
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 
        inset 0 0 50px rgba(139,0,255,0.1),
        0 0 30px rgba(139,0,255,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-navy));
    padding: 25px;
    border: 1px solid var(--electric-cyan);
    box-shadow: 0 0 15px rgba(0,240,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,110,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
    animation: cardPulse 1.5s ease infinite;
}

@keyframes cardPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 10px 30px rgba(255,0,110,0.4),
        0 0 40px rgba(0,240,255,0.3),
        inset 0 0 20px rgba(255,0,110,0.1);
    border-color: var(--hot-pink);
}

.feature-card i {
    font-size: 2.5em;
    color: var(--neon-purple);
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px var(--neon-purple);
}

.feature-card:hover i {
    color: var(--hot-pink);
    text-shadow: 
        0 0 20px var(--hot-pink),
        0 0 40px var(--hot-pink);
    transform: scale(1.2) rotateY(360deg);
}

.feature-card h3 {
    color: var(--electric-cyan);
    margin-bottom: 12px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 10px var(--hot-pink);
}

.feature-card p {
    font-size: 0.95em;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #e0e0e0;
}

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

.service-item {
    background: var(--dark-navy);
    padding: 30px;
    border-left: 3px solid var(--hot-pink);
    box-shadow: 
        0 0 20px rgba(139,0,255,0.2),
        inset 0 0 20px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--electric-cyan), var(--neon-purple));
    transition: height 0.4s ease;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    transform: translateX(15px);
    box-shadow: 
        -5px 5px 30px rgba(139,0,255,0.4),
        0 0 40px rgba(255,0,110,0.3);
    border-left-color: var(--electric-cyan);
}

.service-item i {
    font-size: 2.2em;
    color: var(--electric-cyan);
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px var(--electric-cyan);
}

.service-item:hover i {
    color: var(--neon-purple);
    text-shadow: 0 0 20px var(--neon-purple);
    transform: scale(1.15) rotate(5deg);
}

.service-item h3 {
    color: var(--hot-pink);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-item:hover h3 {
    color: var(--electric-cyan);
    text-shadow: 0 0 10px var(--electric-cyan);
}

.about {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-navy) 50%, var(--deep-black) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139,0,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,240,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    color: var(--hot-pink);
    text-shadow: 
        0 0 15px var(--hot-pink),
        0 0 30px rgba(255,0,110,0.5);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #c0c0c0;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}

.about-image {
    position: relative;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
    padding: 3px;
    animation: imageFloat2 7s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(0,240,255,0.5),
        0 0 60px rgba(139,0,255,0.3);
}

@keyframes imageFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.about-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--hot-pink), var(--electric-cyan), var(--neon-purple), var(--hot-pink));
    background-size: 300% 300%;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    filter: brightness(1.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: brightness(1.3) contrast(1.2);
}

.stats {
    background: var(--dark-navy);
    border-top: 2px solid var(--electric-cyan);
    border-bottom: 2px solid var(--electric-cyan);
    box-shadow: 
        inset 0 0 50px rgba(0,240,255,0.1),
        0 0 30px rgba(0,240,255,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hot-pink), transparent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.stat-item:hover::before {
    width: 100%;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-item .number {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--hot-pink);
    text-shadow: 
        0 0 20px var(--hot-pink),
        0 0 40px rgba(255,0,110,0.5);
    display: block;
    font-family: 'Orbitron', sans-serif;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 20px var(--hot-pink); }
    50% { text-shadow: 0 0 40px var(--hot-pink), 0 0 60px var(--hot-pink); }
}

.stat-item .label {
    font-size: 1em;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--electric-cyan);
}

.process {
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--dark-navy) 50%, var(--deep-black) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    transform: translateY(-50%);
}

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

.step {
    background: var(--dark-navy);
    padding: 25px;
    border: 2px solid var(--neon-purple);
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--electric-cyan), var(--hot-pink), var(--neon-purple));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(139,0,255,0.5),
        0 0 30px rgba(0,240,255,0.3);
}

.step-number {
    font-size: 2em;
    font-weight: 900;
    color: var(--electric-cyan);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--electric-cyan);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    color: var(--hot-pink);
    text-shadow: 0 0 25px var(--hot-pink);
    transform: scale(1.2);
}

.step h3 {
    color: var(--hot-pink);
    margin-bottom: 10px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.step:hover h3 {
    color: var(--electric-cyan);
}

.step p {
    font-size: 0.9em;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.step:hover p {
    color: #e0e0e0;
}

.testimonials {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-navy) 50%, var(--deep-black) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,0,110,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,240,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-card {
    background: linear-gradient(135deg, var(--dark-navy), var(--deep-black));
    padding: 30px;
    border: 2px solid var(--electric-cyan);
    box-shadow: 
        0 0 20px rgba(0,240,255,0.3),
        inset 0 0 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139,0,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
    animation: testimonialGlow 2s ease infinite;
}

@keyframes testimonialGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--hot-pink);
    box-shadow: 
        0 10px 40px rgba(255,0,110,0.5),
        0 0 50px rgba(0,240,255,0.3),
        inset 0 0 40px rgba(255,0,110,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: var(--deep-black);
    box-shadow: 0 0 20px rgba(0,240,255,0.5);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 30px var(--hot-pink);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h3 {
    color: var(--electric-cyan);
    font-size: 1.1em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--electric-cyan);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-info h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
}

.testimonial-location {
    color: #b0b0b0;
    font-size: 0.9em;
    display: block;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    color: var(--hot-pink);
    text-shadow: 0 0 10px var(--hot-pink);
    font-size: 0.9em;
}

.testimonial-text {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2em;
    color: var(--electric-cyan);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-card:hover .testimonial-text {
    color: #e0e0e0;
}

.testimonial-date {
    color: var(--neon-purple);
    font-size: 0.85em;
    text-align: right;
    text-shadow: 0 0 5px var(--neon-purple);
}

.faq {
    background: var(--dark-navy);
    border-top: 2px solid var(--neon-purple);
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 
        inset 0 0 50px rgba(139,0,255,0.1),
        0 0 30px rgba(139,0,255,0.2);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-navy));
    margin-bottom: 20px;
    border: 2px solid var(--electric-cyan);
    box-shadow: 0 0 15px rgba(0,240,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--hot-pink), var(--neon-purple));
    transition: height 0.3s ease;
}

.faq-item.active::before {
    height: 100%;
}

.faq-item:hover {
    border-color: var(--hot-pink);
    box-shadow: 
        0 0 25px rgba(255,0,110,0.4),
        0 0 40px rgba(0,240,255,0.2);
    transform: translateX(5px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0,240,255,0.05);
}

.faq-question h3 {
    color: var(--electric-cyan);
    font-size: 1.1em;
    margin: 0;
    text-shadow: 0 0 10px var(--electric-cyan);
    transition: all 0.3s ease;
    flex: 1;
}

.faq-item.active .faq-question h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
}

.faq-question i {
    color: var(--electric-cyan);
    font-size: 1.2em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px var(--electric-cyan);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #c0c0c0;
    line-height: 1.8;
    margin: 0;
    padding-top: 15px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-answer p {
    color: #e0e0e0;
}

.gallery-section {
    background: var(--dark-navy);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--electric-cyan);
    box-shadow: 0 0 15px rgba(0,240,255,0.3);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139,0,255,0.3), rgba(255,0,110,0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.gallery-item:hover {
    border-color: var(--hot-pink);
    box-shadow: 
        0 0 30px var(--hot-pink),
        0 0 50px rgba(255,0,110,0.3);
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,14,39,0.95), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border-top: 2px solid var(--electric-cyan);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--electric-cyan);
    font-size: 1.2em;
    margin-bottom: 8px;
    text-shadow: 0 0 10px var(--electric-cyan);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
}

.gallery-overlay p {
    color: #c0c0c0;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.gallery-item:hover .gallery-overlay p {
    color: #e0e0e0;
}

.benefits-section {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-navy) 50%, var(--deep-black) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0,240,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,0,110,0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.benefit-card {
    background: linear-gradient(135deg, var(--dark-navy), var(--deep-black));
    padding: 35px;
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 20px rgba(139,0,255,0.3),
        inset 0 0 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: benefitPulse 2s ease infinite;
}

@keyframes benefitPulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-5%, -5%); }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--electric-cyan);
    box-shadow: 
        0 10px 40px rgba(0,240,255,0.5),
        0 0 50px rgba(139,0,255,0.3),
        inset 0 0 40px rgba(0,240,255,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--electric-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--deep-black);
    box-shadow: 
        0 0 25px rgba(0,240,255,0.5),
        inset 0 0 20px rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotateY(360deg);
    background: linear-gradient(135deg, var(--hot-pink), var(--electric-cyan));
    box-shadow: 
        0 0 40px var(--hot-pink),
        0 0 60px rgba(255,0,110,0.5),
        inset 0 0 30px rgba(255,255,255,0.2);
}

.benefit-card h3 {
    color: var(--electric-cyan);
    margin-bottom: 15px;
    font-size: 1.3em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 15px var(--hot-pink);
}

.benefit-card p {
    color: #b0b0b0;
    font-size: 0.95em;
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover p {
    color: #e0e0e0;
}

.cta-section {
    background: linear-gradient(135deg, var(--neon-purple), var(--hot-pink));
    text-align: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 50px rgba(0,0,0,0.3),
        0 0 50px rgba(255,0,110,0.5);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.cta-section h2 {
    color: #fff;
    text-shadow: 
        0 0 20px rgba(0,0,0,0.5),
        0 0 40px rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.contact-section {
    background: var(--deep-black);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--dark-navy);
    padding: 30px;
    border: 2px solid var(--electric-cyan);
    box-shadow: 
        0 0 20px rgba(0,240,255,0.3),
        inset 0 0 30px rgba(0,240,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 70%);
    animation: infoGlow 4s ease infinite;
}

@keyframes infoGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10%, -10%); }
}

.contact-info:hover {
    border-color: var(--neon-purple);
    box-shadow: 
        0 0 30px rgba(139,0,255,0.5),
        inset 0 0 40px rgba(139,0,255,0.1);
}

.contact-info h3 {
    color: var(--electric-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--electric-cyan);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(10px);
}

.contact-detail i {
    font-size: 1.5em;
    color: var(--hot-pink);
    margin-top: 3px;
    text-shadow: 0 0 10px var(--hot-pink);
    transition: all 0.3s ease;
}

.contact-detail:hover i {
    color: var(--electric-cyan);
    text-shadow: 0 0 15px var(--electric-cyan);
    transform: scale(1.2);
}

.contact-detail div h4 {
    color: var(--electric-cyan);
    font-size: 1em;
    margin-bottom: 5px;
}

.contact-detail div p {
    color: #b0b0b0;
    font-size: 0.95em;
}

.contact-form {
    background: var(--dark-navy);
    padding: 30px;
    border: 2px solid var(--neon-purple);
    box-shadow: 
        0 0 20px rgba(139,0,255,0.3),
        inset 0 0 30px rgba(139,0,255,0.05);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--electric-cyan);
    box-shadow: 
        0 0 30px rgba(0,240,255,0.5),
        inset 0 0 40px rgba(0,240,255,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--electric-cyan);
    font-weight: 600;
    font-size: 0.9em;
    text-shadow: 0 0 5px var(--electric-cyan);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--deep-black);
    border: 1px solid var(--electric-cyan);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hot-pink);
    box-shadow: 
        0 0 15px rgba(255,0,110,0.5),
        inset 0 0 15px rgba(255,0,110,0.1);
    background: rgba(26,31,58,0.5);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--hot-pink);
}

.checkbox-group label {
    font-size: 0.85em;
    color: #b0b0b0;
}

.map-container {
    margin-top: 40px;
    border: 2px solid var(--electric-cyan);
    box-shadow: 
        0 0 30px rgba(0,240,255,0.4),
        inset 0 0 20px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--electric-cyan), var(--neon-purple), var(--hot-pink), var(--electric-cyan));
    background-size: 300% 300%;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

footer {
    background: var(--dark-navy);
    border-top: 2px solid var(--electric-cyan);
    padding: 30px 0 15px;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 -5px 30px rgba(0,240,255,0.2),
        inset 0 0 50px rgba(0,0,0,0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--hot-pink);
    margin-bottom: 15px;
    font-size: 1em;
    text-shadow: 0 0 10px var(--hot-pink);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #b0b0b0;
    font-size: 0.9em;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '>';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--electric-cyan);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-section ul li a:hover {
    color: var(--electric-cyan);
    padding-left: 10px;
    text-shadow: 0 0 10px var(--electric-cyan);
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,240,255,0.2);
    color: #808080;
    font-size: 0.85em;
}

.footer-bottom a {
    color: var(--electric-cyan);
    margin: 0 8px;
    text-shadow: 0 0 5px var(--electric-cyan);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-navy), var(--deep-black));
    border-top: 3px solid var(--hot-pink);
    padding: 20px;
    box-shadow: 
        0 -5px 40px rgba(255,0,110,0.5),
        inset 0 0 30px rgba(255,0,110,0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.privacy-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--hot-pink), var(--neon-purple), var(--electric-cyan));
    background-size: 200% 100%;
    animation: popupBorder 3s linear infinite;
}

@keyframes popupBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.privacy-popup.show {
    transform: translateY(0);
    animation: popupSlide 0.5s ease;
}

@keyframes popupSlide {
    0% { transform: translateY(100%); }
    60% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-popup-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9em;
    color: #c0c0c0;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}

.privacy-popup-content .btn {
    padding: 10px 25px;
    font-size: 0.9em;
}

.content-section {
    background: var(--dark-navy);
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid var(--electric-cyan);
    box-shadow: 
        0 0 30px rgba(0,240,255,0.3),
        inset 0 0 50px rgba(0,0,0,0.3);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--hot-pink), var(--neon-purple));
    animation: sidebarGrow 2s ease-in-out infinite;
}

@keyframes sidebarGrow {
    0%, 100% { height: 0; }
    50% { height: 100%; }
}

.content-section h2 {
    color: var(--hot-pink);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--hot-pink);
}

.content-section h3 {
    color: var(--electric-cyan);
    margin-top: 25px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px var(--electric-cyan);
}

.content-section p {
    margin-bottom: 15px;
    color: #c0c0c0;
    line-height: 1.8;
}

.content-section ul {
    margin: 15px 0 15px 30px;
    color: #c0c0c0;
}

.content-section ul li {
    margin-bottom: 8px;
    position: relative;
}

.content-section ul li::before {
    content: '▹';
    position: absolute;
    left: -20px;
    color: var(--electric-cyan);
    font-weight: bold;
}

.thank-you {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.thank-you::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,240,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: thankYouGlow 3s ease-in-out infinite;
}

@keyframes thankYouGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.thank-you i {
    font-size: 4em;
    color: var(--electric-cyan);
    margin-bottom: 20px;
    display: block;
    animation: checkPulse 2s ease infinite;
    text-shadow: 
        0 0 20px var(--electric-cyan),
        0 0 40px var(--electric-cyan);
}

@keyframes checkPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 20px var(--electric-cyan);
    }
    50% { 
        transform: scale(1.15); 
        text-shadow: 0 0 40px var(--electric-cyan), 0 0 60px var(--electric-cyan);
    }
}

.thank-you h1 {
    color: var(--hot-pink);
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px var(--hot-pink),
        0 0 40px rgba(255,0,110,0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px var(--hot-pink); }
    50% { text-shadow: 0 0 40px var(--hot-pink), 0 0 60px var(--hot-pink); }
}

.thank-you p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #c0c0c0;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}
@media (max-width: 998px){
  
    nav ul{
        gap: 0;
    }
.logo span{
    font-size: 14px;
}
}
@media (max-width: 881px){
nav a{
    padding: 8px 5px;
}
}
@media (max-width: 768px) {
      .content-section h1{
        font-size: 1rem;
    }
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    nav.active {
        display: block;
        animation: navSlide 0.3s ease;
    }
    
    @keyframes navSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul {
        flex-direction: column;
        gap: 0px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .testimonial-rating {
        width: 100%;
        margin-top: 10px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1em;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .content-section h3,h2{
        font-size: 0.4rem;
    }
    .contact-info h3{
        font-size: 0.8rem;
    }
    .about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 12px;
    color: var(--hot-pink);
    text-shadow: 
        0 0 15px var(--hot-pink),
        0 0 30px rgba(255,0,110,0.5);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #c0c0c0;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}

    .logo span{
        display: none;
    }
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 1.6em;
    }
    
    h1 {
        font-size: 1em !important;
    }
    
    h2 {
        font-size: 1em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .feature-card,
    .service-item {
        padding: 20px;
    }
    
    .stat-item .number {
        font-size: 2em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
    
    .testimonial-info h3 {
        font-size: 1em;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9em;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 12px 15px;
    }
    
    .faq-answer p {
        font-size: 0.9em;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        font-size: 1.2em;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.1em;
        letter-spacing: 1px;
    }
    
    .hero-text h1 {
        font-size: 1.4em;
    }
    
    h1 {
        font-size: 1.3em;
    }
    
    h2 {
        font-size: 0.8em;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

/* Отключение всех анимаций на страницах политик */
body.policy-page::before,
body.policy-page::after {
    animation: none !important;
}

body.policy-page header::before {
    animation: none !important;
}

body.policy-page .logo {
    animation: none !important;
}

body.policy-page .logo::after {
    animation: none !important;
}

body.policy-page .content-section::before {
    animation: none !important;
}

body.policy-page * {
    animation: none !important;
}

body.policy-page *::before,
body.policy-page *::after {
    animation: none !important;
}