:root {
    --primary-blue: #4662b0;
    --secondary-red: #dc2626;
    --accent-gold: #d97706;
    --dark-charcoal: #1f2937;
    --light-gray: #f9fafb;
    --medium-gray: #6b7280;
    --white: #ffffff;
    --shadow-light: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

@media (max-width: 768px) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Modern Header with Glass Effect */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary-red);
}

/* Modern Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-red);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-red);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    margin-top: 80px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.65);
    opacity: 0;
    animation: fade 10s infinite;
}

/* Add a delay to second image */
.hero-bg-img.delay {
    animation-delay: 5s; /* half of animation duration for alternating effect */
}

/* Fade animation */
@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    45%  { opacity: 1; }
    55%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Gradient overlay for readability */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #dc2626;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    background-color: #b91c1c;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

/* Hero Logo Floating Animation */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 350px;
    height: 350px;
    position: relative;
    animation: float 6s ease-in-out infinite, pulse 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

@keyframes pulse {
    0% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)) brightness(1); }
    100% { filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)) brightness(1.1); }
}

/* About Section with Video */
.about {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-red), var(--accent-gold));
    margin: 0.75rem auto 0;
    border-radius: 5px;
}

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

.about-text {
    padding-right: 1rem;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-blue));
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1rem;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button i {
    font-size: 1.5rem;
}

.call-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.25);
}

/* Enhanced Video Container with Full Controls */
.about-video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-normal);
}

.about-video-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-video {
    width: 100%;
    height: 400px;
    object-fit: contain;   /* shows entire video without cropping */
    background: black;     /* fills empty space */
    display: block;
}
.video-controls-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-video-container:hover .video-controls-container {
    opacity: 1;
}

.video-progress {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-bar {
    height: 100%;
    background-color: var(--secondary-red);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-controls-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.video-controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform var(--transition-fast);
    padding: 0.5rem;
}

.video-control-btn:hover {
    transform: scale(1.2);
    color: var(--secondary-red);
}

.video-time {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.volume-level {
    height: 100%;
    background-color: white;
    width: 80%;
}

/* Services Section */
.services {
    padding: 6rem 0 3rem;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-red), var(--accent-gold));
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--secondary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
}


/* Contact Page */
.contact-page {
    padding: 8rem 0 6rem;
    background-color: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-red);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding: 1rem;
    border-radius: 10px;
    transition: background-color var(--transition-fast);
}

.contact-detail:hover {
    background-color: rgba(30, 58, 138, 0.05);
}

.contact-detail i {
    color: var(--secondary-red);
    font-size: 1.5rem;
    margin-right: 1.25rem;
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-red);
}

.submit-btn {
    background: linear-gradient(to right, var(--secondary-red), var(--accent-gold));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

/* Premium Footer */
.fb-footer {
    background: #43597e; /* Deep charcoal black */
    color: #dcdcdc;
    padding: 4rem 0 2.5rem;
    margin-top: 5rem;
    border-top: 3px solid #c8102e; /* Premium red accent */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3.2rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    width: 130px;
    margin-bottom: 1.2rem;
}

.footer-about p {
    margin: 1rem 0 1.6rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    gap: 0.9rem;
}

/* Icon Wrapper */
.social-icons a {
    width: 45px;
    height: 45px;
    background: #1c1c1c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

/* SVG Icons */
.social-icon {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

/* White icons */
.social-icon.facebook,
.social-icon.whatsapp,
.social-icon.email {
    filter: invert(1);
}

/* Instagram keeps original colors */
.social-icon.instagram {
    filter: none;
}

/* Hover Effect */
.social-icons a:hover {
    background: #c8102e;
    transform: translateY(-5px);
}


/* Section Titles */
.footer-rating h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
}

.footer-rating h4::after,
.footer-contact h4::after {
    content: '';
    width: 45px;
    height: 3px;
    background: #c8102e;
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* Google Rating */
.google-rating {
    background: #1c1c1c;
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
}

.google-rating .stars {
    color: #FFD700;
    font-size: 1.4rem;
}

.google-rating p {
    margin: 0;
    font-size: 0.95rem;
}

/* Review Button */
.review-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #4285F4;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.review-btn:hover {
    background: #2e6fda;
}

/* Contact */
.footer-contact p {
    margin: 0.6rem 0;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 8px;
    color: #c8102e;
}

/* Footer Contact Section */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    color: #ccc;
    font-size: 0.95rem;
}

/* SVG Icons */
.footer-contact-icon {
    width: 18px;
    height: 18px;
    filter: invert(1);   /* white icons */
    opacity: 0.9;
    pointer-events: none;
    flex-shrink: 0;
}


/* Footer bottom */
.copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid #1f1f1f;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.75rem;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1001;
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-logo {
        width: 280px;
        height: 280px;
    }
    
    .about-video-container {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .carousel-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-logo {
        width: 220px;
        height: 220px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-dark);
        transition: right var(--transition-normal);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f1f1;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }s
    
    .carousel-slide {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
}


.space-button {
  position: relative;
  padding: 15px 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(45deg, #0f0f2d, #1a1a3a);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 10px rgba(10, 10, 31, 0.5),
    0 0 10px rgba(66, 135, 245, 0.15),
    inset 0 0 10px rgba(66, 135, 245, 0.05);
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.button-container {
  position: relative;
  display: inline-block;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(90deg, #00c6ff, #845ec2, #ff6f91, #00c6ff);
  background-size: 400% 400%;
  animation: gradientBorder 20s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform, filter;
  backdrop-filter: blur(5px);
}

.space-button span {
  position: relative;
  z-index: 5;
  mix-blend-mode: normal;
  font-weight: 500;
  background: linear-gradient(to right, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: brightness(1.5) contrast(1.8);
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.3);
}

.space-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      1px 1px at 10% 15%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 85% 25%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 75% 85%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 15% 75%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 50% 25%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 25% 50%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1px 1px at 85% 65%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    );
  animation: moveParticles1 20s linear infinite;
  opacity: 0.45;
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}

.space-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  animation: moveParticles2 18s linear infinite;
  transform: rotate(25deg);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
  z-index: 3;
}

.space-button:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow:
    0 6px 10px rgba(10, 10, 31, 0.6),
    0 0 15px rgba(66, 135, 245, 0.3),
    inset 0 0 15px rgba(66, 135, 245, 0.1);
  background: linear-gradient(45deg, #141436, #1e1e42);
}

.space-button:hover span {
  filter: brightness(1.8) contrast(2);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.4),
    0 0 60px rgba(255, 255, 255, 0.2);
}

.button-container:hover {
  filter: brightness(1.1);
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(66, 135, 245, 0.2);
  backdrop-filter: blur(8px);
  animation: gradientBorder 10s ease-in-out infinite;
}

.space-button:hover::before {
  opacity: 0.65;
}

.space-button:hover::after {
  opacity: 0.75;
}

.space-button:hover .bright-particles {
  opacity: 1;
  filter: blur(0);
}

@keyframes moveParticles1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-25px, 15px) rotate(90deg);
  }
  40% {
    transform: translate(20px, -20px) rotate(180deg);
  }
  60% {
    transform: translate(-15px, -25px) rotate(270deg);
  }
  80% {
    transform: translate(25px, 20px) rotate(320deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes moveParticles2 {
  0% {
    transform: translate(0, 0) rotate(20deg);
  }
  25% {
    transform: translate(20px, -15px) rotate(110deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(200deg);
  }
  75% {
    transform: translate(15px, 15px) rotate(290deg);
  }
  100% {
    transform: translate(0, 0) rotate(380deg);
  }
}

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

/* Yeni parlak parçacık katmanı */
.space-button .bright-particles {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      2px 2px at 15% 25%,
      rgba(255, 255, 255, 1),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1.8px 1.8px at 85% 15%,
      rgba(255, 255, 255, 0.98),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      2px 2px at 75% 75%,
      rgba(255, 255, 255, 1),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      1.5px 1.5px at 25% 85%,
      rgba(255, 255, 255, 0.95),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      2.2px 2.2px at 65% 35%,
      rgba(255, 255, 255, 1),
      rgba(0, 0, 0, 0)
    );
  animation: moveParticles4 15s linear infinite;
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
  z-index: 4;
  filter: blur(0.3px);
}

@keyframes moveParticles4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-30px, 20px) rotate(90deg);
  }
  40% {
    transform: translate(25px, -25px) rotate(180deg);
  }
  60% {
    transform: translate(-20px, -30px) rotate(270deg);
  }
  80% {
    transform: translate(30px, 25px) rotate(320deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}



/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: shake 1.5s ease-in-out;
}

/* SVG Icon */
.floating-icon {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Makes icon white */
    pointer-events: none;
}

/* Call Button - Left */
.call-btn {
    left: 20px;
    background-color: #dc2626;
}

.call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220,38,38,0.4);
}

/* WhatsApp Button - Right */
.whatsapp-btn {
    right: 20px;
    background-color: #25D366;
    
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37,211,102,0.4);
}

/* Shaking Animation */
@keyframes shake {
    0% { transform: translate(0, 0) rotate(0); }
    20% { transform: translate(-2px, 2px) rotate(-2deg); }
    40% { transform: translate(2px, -2px) rotate(2deg); }
    60% { transform: translate(-2px, 1px) rotate(-1deg); }
    80% { transform: translate(2px, 1px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

/* Announcement Bar */
.announcement-bar {
    width: 100%;
    background: #222;
    color: #fff;
    overflow: hidden;
    padding: 8px 0;
    margin-top: 5px;
}

/* Scroll Text */
.scroll-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 18s linear infinite;
    font-size: 1rem;
}

/* Each Item */
.scroll-content span {
    margin: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* SVG Icon */
.announce-icon {
    width: 18px;
    height: 18px;
    filter: invert(1);   /* makes icons white */
    opacity: 0.9;
    pointer-events: none;
}

/* Animation */
@keyframes scroll-left {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}



.spinner {
        display: none;
        width: 30px;
        height: 30px;
        border: 3px solid #ccc;
        border-top-color: #333;
        border-radius: 50%;
        animation: spin 0.7s linear infinite;
        margin: 10px auto;
    }
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    .submit-btn.loading {
        opacity: 0.6;
        pointer-events: none;
    }




    /* Call Button */
.call-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* SVG Icon */
.call-icon {
    width: 18px;
    height: 18px;
    filter: invert(1); /* white icon */
    pointer-events: none;
}

/* Hover Effect */
.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220,38,38,0.35);
}

