/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base styles */
:root {
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --animation-duration: 0.6s;
    --animation-delay-base: 0.1s;
    --scroll-progress: 0%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
}

/* Remove tap highlight from specific interactive elements */
a, button, input, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Keep tap highlight for form inputs to maintain native feel */
input, textarea {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: linear-gradient(to bottom right, #111827, #000000, #7f1d1d);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes siren-glow {
    0% { filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5)); }
    50% { filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8)); }
    100% { filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5)); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-siren {
    animation: siren-glow 2s ease-in-out infinite;
    color: var(--red-500);
}

/* Hero Image Styles */
.hero-static-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.hero-static-image:hover {
    transform: scale(1.02);
}

/* Glass effect */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        0 0 10px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    border: 2px solid var(--red-500);
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.2),
        0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0% { border-color: var(--red-500); }
    50% { border-color: var(--red-700); }
    100% { border-color: var(--red-500); }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: var(--red-500);
}

.logo-link:hover .animate-siren {
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8));
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
    list-style: none;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--red-500);
    background: rgba(239, 68, 68, 0.1);
    transform: translateY(-2px);
}

.nav-links a:active {
    transform: translateY(0);
}

/* Prevent unwanted hover effects on empty links */
.nav-links a[href="#"],
.nav-links a:not([href]) {
    pointer-events: none;
    opacity: 0.5;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
}

.mobile-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--red-500);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--red-500);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem;
    }

    .logo {
        font-size: 1.5rem;  /* Increased from 1.1rem */
    }

    .logo img {
        width: 2.5rem;  /* Increased logo size */
        height: 2.5rem;
    }

    .mobile-menu {
        display: flex;
        margin-left: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        border-radius: 0.75rem;
        margin: 0.5rem 1rem;
        border: 1px solid rgba(239, 68, 68, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        width: calc(100% - 2rem);
    }

    .nav-links.active {
        display: flex;
    }

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

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        font-size: 0.85rem;
    }

    .popup-nav-links {
        gap: 1rem;
    }

    .popup-nav-links a {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.75rem;  /* Reduced from 2rem */
        line-height: 1.3;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: rgba(224, 224, 224, 0.9);
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;  /* Adjusted for smaller screens */
    }

    .logo img {
        width: 2.25rem;  /* Slightly smaller for very small screens */
        height: 2.25rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .popup-nav-links a {
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    .mobile-menu {
        transform: scale(0.9);
    }

    .hero-text {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;  /* Further reduced for very small screens */
        line-height: 1.2;
        margin-bottom: 0.75rem;
        letter-spacing: -0.01em;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        color: rgba(224, 224, 224, 0.85);
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Products Section */
#products {
    padding: 2rem 0;  /* Reduced from 3rem */
    position: relative;
    z-index: 5;
}

#products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--red-500);
    box-shadow: 
        0 10px 30px -15px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.1);
}

.product-card .product-link {
    text-decoration: none;
    color: inherit;
}

.product-card .image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* This creates 1:1 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

.product-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: var(--red-500);
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-card .card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    color: var(--red-500);
    background: rgba(0, 0, 0, 0.5);
    padding: 6px;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card .card-arrow {
        width: 28px;
        height: 28px;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
}

/* Features Section */
.features {
    padding: 2rem 0;  /* Reduced from 3rem */
    position: relative;
    z-index: 5;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Main feature card styles */
.feature-card.main-feature {
    grid-column: 1 / -1;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid var(--red-500);
    padding: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card.main-feature i {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    color: var(--red-500);
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.feature-card.main-feature h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--red-500);
}

.feature-card.main-feature p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card.main-feature:hover {
    transform: translateY(-10px);
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(239, 68, 68, 0.2);
}

.feature-card.main-feature:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.8));
}

@media (max-width: 768px) {
    .feature-card.main-feature {
        padding: 2rem;
    }

    .feature-card.main-feature i {
        width: 3.5rem;
        height: 3.5rem;
    }

    .feature-card.main-feature h3 {
        font-size: 1.5rem;
    }

    .feature-card.main-feature p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-card.main-feature {
        padding: 1.5rem;
    }

    .feature-card.main-feature i {
        width: 3rem;
        height: 3rem;
    }

    .feature-card.main-feature h3 {
        font-size: 1.35rem;
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--red-500);
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.2),
        0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.feature-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.8));
}

.feature-card:hover h3 {
    color: var(--red-500);
}

.feature-card i {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.5;
}

/* Contact Section */
#contact {
    padding: 2rem 0;  /* Reduced from 3rem */
    position: relative;
    z-index: 5;
}

#contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    transform: translateY(-10px);
}

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

.contact-info,
.contact-form {
    padding: 2rem;
    border-radius: 0.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-500);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.contact-form textarea {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    resize: none;
    min-height: 150px;
    max-height: 150px;
    overflow-y: auto;
}

.contact-form button {
    background: var(--red-600);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background: var(--red-700);
}

/* Footer */
footer {
    padding: 1rem 0;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    align-items: center;
    margin: 0;
}

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

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }

    .footer-links, .social-links {
        margin: 0.5rem 0;
    }
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-600);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background: var(--red-700);
  }
  
  .blurred {
    backdrop-filter: blur(10px);
    transition: backdrop-filter 0.3s ease-in-out;
  }

  /* Mobile Menu Popup Styles */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    padding: 2rem;
    z-index: 999;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid var(--red-500);
    box-shadow: 
      0 0 20px rgba(239, 68, 68, 0.2),
      0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
  }

  .menu-popup.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .popup-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    list-style: none;
    padding: 0;
  }

  .popup-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-tap-highlight-color: transparent;
    display: block;
  }

  .popup-nav-links a:hover {
    color: var(--red-500);
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--red-500);
    transform: translateY(-2px);
  }

  .popup-nav-links a:active {
    transform: translateY(0);
  }

  /* Prevent text selection during navigation */
  nav, .menu-popup {
    /* user-select property removed */
  }

  /* Cursor styles for interactive elements */
  a, button, .feature-card, .product-item {
    cursor: pointer;
  }

  input, textarea {
    cursor: text;
  }

  /* Text Selection Styles */
  ::selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 10px var(--red-500),
      0 0 20px var(--red-500),
      0 0 30px var(--red-500);
    animation: textGlow 2s ease-in-out infinite;
  }

  ::-moz-selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 10px var(--red-500),
      0 0 20px var(--red-500),
      0 0 30px var(--red-500);
    animation: textGlow 2s ease-in-out infinite;
  }

  @keyframes textGlow {
    0% {
      color: var(--red-500);
      text-shadow: 
        0 0 10px var(--red-500),
        0 0 20px var(--red-500),
        0 0 30px var(--red-500);
    }
    50% {
      color: var(--red-600);
      text-shadow: 
        0 0 15px var(--red-600),
        0 0 25px var(--red-600),
        0 0 35px var(--red-600);
    }
    100% {
      color: var(--red-500);
      text-shadow: 
        0 0 10px var(--red-500),
        0 0 20px var(--red-500),
        0 0 30px var(--red-500);
    }
  }

  /* Stronger glow effect for headings */
  h1::selection, h2::selection, h3::selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 15px var(--red-500),
      0 0 25px var(--red-500),
      0 0 35px var(--red-500),
      0 0 45px var(--red-500);
  }

  h1::-moz-selection, h2::-moz-selection, h3::-moz-selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 15px var(--red-500),
      0 0 25px var(--red-500),
      0 0 35px var(--red-500),
      0 0 45px var(--red-500);
  }

  /* Prevent text selection for headers outside content blocks */
  nav h1, nav h2, nav h3,
  #products > h2,
  #contact > h2,
  .section-title,
  .footer-logo h1, .footer-logo h2, .footer-logo h3,
  .logo h1, .logo h2, .logo h3,
  h2:not(.content-title) {  /* Prevents selection of all h2 headers except those with class content-title */
    /* Remove user-select restrictions */
  }

  /* Specifically target "Our Premium Safety Products" and "Contact Us" */
  #products h2,
  #contact h2 {
    /* Remove !important user-select restrictions */
  }

  /* Allow text selection only for headers within content areas */
  .hero-text h1, .hero-text h2, .hero-text h3,
  .feature-card h3,
  .product-item h3,
  .contact-info h3,
  .contact-form h3 {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
  }

  /* Keep existing selection styles */
  .hero-text h2::selection, 
  .hero-text h3::selection,
  .feature-card h3::selection,
  .product-item h3::selection,
  .contact-info h3::selection,
  .contact-form h3::selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 15px var(--red-500),
      0 0 25px var(--red-500),
      0 0 35px var(--red-500),
      0 0 45px var(--red-500);
  }

  /* Firefox specific selection styles */
  .hero-text h2::-moz-selection,
  .hero-text h3::-moz-selection,
  .feature-card h3::-moz-selection,
  .product-item h3::-moz-selection,
  .contact-info h3::-moz-selection,
  .contact-form h3::-moz-selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 15px var(--red-500),
      0 0 25px var(--red-500),
      0 0 35px var(--red-500),
      0 0 45px var(--red-500);
  }

  /* Prevent text selection for section headings */
  .features h2,
  nav h1, nav h2, nav h3,
  #products > h2,
  #contact > h2,
  .section-title,
  .footer-logo h1, .footer-logo h2, .footer-logo h3,
  .logo h1, .logo h2, .logo h3,
  h2:not(.content-title) {
    /* Remove user-select restrictions */
  }

  /* Remove all lazy load and unnecessary animations */
  .lazy-load,
  .lazy-load.visible,
  .hero-content,
  .about-wrapper,
  .products-grid,
  .features-grid,
  .contact-grid,
  .hero-text h1,
  .hero-text p,
  .hero-text .cta-button,
  .about-text h2,
  .about-description,
  .stats-grid,
  .about-media,
  .product-item,
  .feature-card,
  .contact-info,
  .contact-form,
  #products h2,
  .features h2,
  #contact h2,
  .contact-form input,
  .contact-form textarea,
  .contact-form button,
  .contact-item,
  .section-badge,
  .about-content {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  /* Optimize transitions for performance */
  .glass-effect,
  .nav-links a,
  .feature-card,
  .product-item,
  .stat-card,
  .media-item,
  .cta-button {
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease, 
                background-color 0.3s ease, 
                border-color 0.3s ease;
  }

  /* Essential animations */
  @keyframes siren-glow {
    0% { 
      filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5)); 
    }
    50% { 
      filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8)); 
    }
    100% { 
      filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5)); 
    }
  }

  @keyframes borderGlow {
    0% { 
      border-color: var(--red-500); 
    }
    50% { 
      border-color: var(--red-700); 
    }
    100% { 
      border-color: var(--red-500); 
    }
  }

  /* About Section Core Styles */
  .modern-about {
    padding: 2rem 0;  /* Reduced from 3rem */
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .about-wrapper {
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.08);
    color: var(--red-500);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
  }

  .about-text {
    padding: 1rem;
    text-align: left;
  }

  .about-text h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .about-description {
    color: rgba(209, 213, 219, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .about-media {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .media-item {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 0;
  }

  .media-item:last-child {
    margin-bottom: 0;
  }

  .media-item:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(239, 68, 68, 0.1);
  }

  .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* Responsive Adjustments */
  @media (max-width: 1200px) {
    .about-wrapper {
        padding: 2.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
  }

  @media (max-width: 1024px) {
    .modern-about {
      padding: 2.5rem 0;
    }
    .about-wrapper {
      padding: 1.5rem;
    }
    .about-content {
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .modern-about {
      padding: 1.5rem 0;  /* Further reduced for mobile */
    }
    .about-wrapper {
      padding: 1.25rem;
    }
    .about-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .about-text {
      padding: 0.75rem;
    }
    .media-grid {
      padding: 0.75rem;
    }
    .media-item {
      height: 300px;
    }
  }

  @media (max-width: 640px) {
    .modern-about {
      padding: 1rem 0;  /* Even more reduced for small screens */
    }
    .about-wrapper {
      padding: 1rem;
    }
    .about-content {
      gap: 1rem;
    }
    .media-grid {
      gap: 1rem;
      padding: 0.5rem;
    }
    .media-item {
      height: 250px;
    }
  }

  /* Cursor Follower */
  .cursor-follower {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    mix-blend-mode: difference;
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
    left: -14px;
    top: -14px;
  }

  /* Hide cursor follower on mobile devices */
  @media (max-width: 768px), (hover: none) {
    .cursor-follower {
      display: none !important;
    }
  }

  .cursor-follower::before,
  .cursor-follower::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--red-500);
    animation: cursorPulse 2s ease-in-out infinite;
  }

  .cursor-follower::before {
    width: 100%;
    height: 100%;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
  }

  .cursor-follower::after {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    box-shadow: 
      0 0 10px var(--red-500),
      0 0 20px var(--red-500),
      0 0 30px var(--red-500);
  }

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

  .cursor-follower.active {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.7));
  }

  .cursor-follower.active::before {
    animation: cursorActivePulse 2s ease-in-out infinite;
    border-color: var(--red-600);
    background: rgba(239, 68, 68, 0.25);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
  }

  .cursor-follower.active::after {
    background: var(--red-600);
    width: 10px;
    height: 10px;
    box-shadow: 
      0 0 15px var(--red-600),
      0 0 30px var(--red-600),
      0 0 45px var(--red-600);
  }

  @keyframes cursorActivePulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.4);
      opacity: 0.4;
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
  }

  /* Remove cursor: none from interactive elements */
  a, button, .feature-card, .product-item, input, textarea {
    /* Remove cursor: none */
  }

  /* Adjust cursor for text inputs - keep default behavior */
  input, textarea {
    cursor: text;
  }

  /* Keep default cursor behavior when active */
  *:active {
    /* Remove cursor: none */
  }

  /* Text Selection Styles */
  ::selection {
    background: transparent;
    color: var(--red-500);
    text-shadow: 
      0 0 10px var(--red-500),
      0 0 20px var(--red-500),
      0 0 30px var(--red-500);
    animation: textGlow 2s ease-in-out infinite;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
  }

  .stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.1),
      0 0 10px rgba(239, 68, 68, 0.1);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--red-500);
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .stat-label {
    color: rgba(209, 213, 219, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
  }

  /* Update responsive styles */
  @media (max-width: 1024px) {
    .stat-number {
      font-size: 2.25rem;
    }
  }

  @media (max-width: 768px) {
    .stats-grid {
      gap: 1rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .stat-card {
      padding: 1.25rem;
    }

    .stat-number {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
    }

    .stat-card {
      padding: 1rem;
    }

    .stat-number {
      font-size: 1.75rem;
    }

    .stat-label {
      font-size: 0.8125rem;
    }
  }

  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(239, 68, 68, 0.1);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--red-500);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    overflow: hidden;
  }

  .scroll-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(
        var(--red-500) var(--progress, 0%),
        transparent var(--progress, 0%)
    );
    mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 calc(100% - 4px)
    );
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 calc(100% - 4px)
    );
    transition: --progress 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
  }

  .scroll-to-top::after {
    content: "▲";
    display: block;
    animation: arrowFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
    position: relative;
    z-index: 1;
  }

  @keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
    }
    50% {
        transform: translateY(-4px);
        filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.7));
    }
  }

  .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .scroll-to-top:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(239, 68, 68, 0.2);
  }

  .scroll-to-top:hover::before {
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.7));
  }

  .scroll-to-top:active {
    transform: translateY(0);
  }

  /* Remove old SVG styles */
  .scroll-to-top svg,
  .scroll-to-top svg path {
    display: none;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .scroll-to-top {
        bottom: 1.25rem;
        right: 1rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem;
    }
  }

  /* Scroll-based animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  /* Stagger children animations */
  .stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  /* Add delay to staggered children */
  .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
  .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
  .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
  .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
  .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }

  /* Optimize animations for performance */
  @media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .stagger-children > * {
      transition: none;
      transform: none;
      filter: none;
    }
  }

  /* Animated Industrial Background */
  .industrial-bg {
    display: none;
  }

  /* Add ambient light effect */
  .industrial-bg .ambient-light {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at 50% 0%,
      rgba(239, 68, 68, 0.05) 0%,
      transparent 50%
    );
    animation: ambientPulse 8s ease-in-out infinite;
  }

  @keyframes ambientPulse {
    0%, 100% {
      opacity: 0.5;
      transform: scale(1);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.1);
    }
  }

  /* Adjust main content to work with the background */
  .min-h-screen {
    position: relative;
    z-index: 1;
  }

  /* Enhanced Hover Effects */
  .nav-links a,
  .feature-card,
  .product-item,
  .contact-form button,
  .cta-button,
  .stat-card,
  .media-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hover glow effect */
  .nav-links a:hover,
  .feature-card:hover,
  .product-item:hover,
  .contact-form button:hover,
  .cta-button:hover,
  .stat-card:hover,
  .media-item:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(239, 68, 68, 0.2);
  }

  /* Hover border effect */
  .nav-links a::before,
  .feature-card::before,
  .product-item::before,
  .contact-form button::before,
  .cta-button::before,
  .stat-card::before,
  .media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: all 0.3s ease;
  }

  .nav-links a:hover::before,
  .feature-card:hover::before,
  .product-item:hover::before,
  .contact-form button:hover::before,
  .cta-button:hover::before,
  .stat-card:hover::before,
  .media-item:hover::before {
    border-color: var(--red-500);
    animation: borderGlow 2s ease-in-out infinite;
  }

  /* Hover background effect */
  .nav-links a:hover,
  .feature-card:hover,
  .product-item:hover,
  .stat-card:hover {
    background: rgba(239, 68, 68, 0.05);
  }

  /* Button hover effects */
  .contact-form button:hover,
  .cta-button:hover {
    background: var(--red-700);
    transform: translateY(-2px);
    box-shadow: 
      0 10px 20px rgba(239, 68, 68, 0.2),
      0 0 15px rgba(239, 68, 68, 0.1);
  }

  /* Icon hover effects */
  .feature-card:hover i,
  .product-item:hover i,
  .stat-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
  }

  /* Text hover effects */
  .nav-links a:hover,
  .feature-card:hover h3,
  .product-item:hover h3,
  .stat-card:hover .stat-number {
    color: var(--red-500);
  }

  /* Smooth transition for all hover effects */
  .nav-links a,
  .feature-card,
  .product-item,
  .contact-form button,
  .cta-button,
  .stat-card,
  .media-item,
  .nav-links a::before,
  .feature-card::before,
  .product-item::before,
  .contact-form button::before,
  .cta-button::before,
  .stat-card::before,
  .media-item::before,
  .feature-card i,
  .product-item i,
  .stat-card i,
  .nav-links a,
  .feature-card h3,
  .product-item h3,
  .stat-card .stat-number {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Active state effects */
  .nav-links a:active,
  .feature-card:active,
  .product-item:active,
  .contact-form button:active,
  .cta-button:active,
  .stat-card:active,
  .media-item:active {
    transform: translateY(0);
  }

  /* Disable hover effects on mobile */
  @media (max-width: 768px) {
    .nav-links a:hover,
    .feature-card:hover,
    .product-item:hover,
    .contact-form button:hover,
    .cta-button:hover,
    .stat-card:hover,
    .media-item:hover {
      transform: none;
      box-shadow: none;
    }

    .nav-links a::before,
    .feature-card::before,
    .product-item::before,
    .contact-form button::before,
    .cta-button::before,
    .stat-card::before,
    .media-item::before {
      display: none;
    }
  }

  .stat-emoji {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.3));
    transition: all 0.3s ease;
  }

  .stat-card:hover .stat-emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.5));
  }

  @media (max-width: 768px) {
    .stat-emoji {
        font-size: 2rem;
    }
  }

  /* Contact Buttons */
  .contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 200px;
    justify-content: center;
  }

  .toll-free-btn {
    color: white;
    border: 2px solid var(--red-500);
    background: rgba(239, 68, 68, 0.15);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
    font-size: 1.1rem;
  }

  .toll-free-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
  }

  .toll-free-btn .label {
    font-size: 0.85em;
    opacity: 0.9;
    font-weight: 400;
  }

  .toll-free-btn .number {
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .call-now-btn {
    background: var(--red-600);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
  }

  .contact-btn i {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
  }

  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
  }

  .toll-free-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: var(--red-500);
    color: var(--red-500);
  }

  .call-now-btn:hover {
    background: var(--red-700);
  }

  .contact-btn:active {
    transform: translateY(0);
  }

  /* Responsive adjustments for contact buttons */
  @media (max-width: 768px) {
    .contact-buttons {
        justify-content: center;
        gap: 0.75rem;
    }

    .contact-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .toll-free-btn {
        font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        min-width: unset;
    }
  }

  /* Sticky Toll Free Button */
  .sticky-toll-free {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--red-500);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }

  .sticky-toll-free .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .sticky-toll-free i {
    font-size: 1.5rem;
    color: var(--red-500);
  }

  .sticky-toll-free .text-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .sticky-toll-free .text-content .label {
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .sticky-toll-free .text-content .number {
    font-weight: 600;
    color: var(--red-500);
  }

  /* Expanded state */
  .sticky-toll-free.expanded {
    width: auto;
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
  }

  .sticky-toll-free.expanded .text-content {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }

  .sticky-toll-free.expanded .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  /* Hover effects */
  .sticky-toll-free:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.2);
  }

  .sticky-toll-free:active {
    transform: translateY(0);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .sticky-toll-free {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .sticky-toll-free.expanded {
        padding: 0.6rem 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .sticky-toll-free {
        bottom: 1.25rem;
        left: 1rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    .sticky-toll-free.expanded {
        padding: 0.5rem 1rem;
    }

    .sticky-toll-free i {
        font-size: 1.25rem;
    }
  }

  /* Certifications Section */
  .certifications {
    padding: 2rem 0;  /* Reduced from 4rem */
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .certifications h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
  }

  .certifications-slider {
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }

  .slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 18); /* Double the items for seamless loop */
    gap: 1rem;
    padding: 1rem;
  }

  .certification-item {
    flex: 0 0 200px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
  }

  .certification-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
  }

  .certification-item span {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
  }

  @keyframes slide {
    0% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(calc(-200px * 9)); /* Half of the total width */
    }
    100% {
        transform: translateX(0);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .certification-item {
        flex: 0 0 160px;
        padding: 1rem;
    }

    .certification-item img {
        width: 60px;
        height: 60px;
    }

    .slider-track {
        width: calc(160px * 18);
        animation: slide 25s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        95% {
            transform: translateX(calc(-160px * 9));
        }
        100% {
            transform: translateX(0);
        }
    }
  }

  @media (max-width: 480px) {
    .certification-item {
        flex: 0 0 140px;
        padding: 0.75rem;
    }

    .certification-item img {
        width: 50px;
        height: 50px;
    }

    .slider-track {
        width: calc(140px * 18);
        animation: slide 20s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        95% {
            transform: translateX(calc(-140px * 9));
        }
        100% {
            transform: translateX(0);
        }
    }
  }

  /* Specifications Section */
  .specifications {
    padding: 2rem 0;  /* Reduced from 4rem */
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .specifications h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
  }

  .specifications-slider {
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }

  .slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 18); /* Double the items for seamless loop */
    gap: 1rem;
    padding: 1rem;
  }

  .specification-item {
    flex: 0 0 200px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
  }

  .specification-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
  }

  .specification-item span {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
  }

  @keyframes slide {
    0% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(calc(-200px * 9)); /* Half of the total width */
    }
    100% {
        transform: translateX(0);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .specification-item {
        flex: 0 0 160px;
        padding: 1rem;
    }

    .specification-item img {
        width: 60px;
        height: 60px;
    }

    .slider-track {
        width: calc(160px * 18);
        animation: slide 25s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        95% {
            transform: translateX(calc(-160px * 9));
        }
        100% {
            transform: translateX(0);
        }
    }
  }

  @media (max-width: 480px) {
    .specification-item {
        flex: 0 0 140px;
        padding: 0.75rem;
    }

    .specification-item img {
        width: 50px;
        height: 50px;
    }

    .slider-track {
        width: calc(140px * 18);
        animation: slide 20s linear infinite;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        95% {
            transform: translateX(calc(-140px * 9));
        }
        100% {
            transform: translateX(0);
        }
    }
  }

  .footer-links {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }

  .sitemap-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .sitemap-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-500);
  }

  .sitemap-link i {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--red-500);
  }

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

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-500);
    transform: translateY(-2px);
    color: var(--red-500);
  }

  .social-link i {
    font-size: 1.2rem;
  }

  /* Specific hover colors for each platform */
  .social-link:hover .fa-facebook {
    color: #1877f2;
  }

  .social-link:hover .fa-linkedin {
    color: #0077b5;
  }

  .social-link:hover .fa-instagram {
    color: #e4405f;
  }

  .social-link:hover .fa-youtube {
    color: #ff0000;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .social-links {
        margin: 0.75rem 0;
    }

    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }

    .social-link i {
        font-size: 1.1rem;
    }
  }

  .content-link {
    color: var(--red-500);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }

  .content-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--red-500);
    transition: width 0.3s ease;
  }

  .content-link:hover {
    color: var(--red-600);
  }

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

  .certification-link {
    color: var(--red-500);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .certification-item:hover .certification-link {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
  }

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

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--red-500);
    background: rgba(255, 255, 255, 0.1);
  }

  .form-group input:invalid:not(:placeholder-shown),
  .form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
  }

  .form-group input:valid:not(:placeholder-shown),
  .form-group textarea:valid:not(:placeholder-shown) {
    border-color: #22c55e;
  }

  .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
  }

  .success-message {
    color: #22c55e;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-top: 1rem;
  }

  .form-group button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--red-500);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .form-group button:hover {
    background: var(--red-600);
  }

  .form-group button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .honeypot-field {
    display: none;
    position: absolute;
    left: -9999px;
  }

  /* Form validation styles */
  .form-group.error input,
  .form-group.error textarea {
    border-color: #ef4444;
  }

  .form-group.error .error-message {
    display: block;
  }

  .form-group.success input,
  .form-group.success textarea {
    border-color: #22c55e;
  }

  /* Animation for success/error messages */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-message,
  .error-message {
    animation: slideIn 0.3s ease forwards;
  }

  /* Section Subtitle */
  .section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    width: 2rem;
    height: 2rem;
    color: var(--red-500);
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.7));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-icon {
        width: 1.1rem;
        height: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-icon {
        width: 1rem;
        height: 1rem;
    }
  }

  /* Made in India Section */
  .made-in-india {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
  }

  .india-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .flag-container {
    position: relative;
    width: 200px;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .indian-flag {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: flagFloat 3s ease-in-out infinite;
  }

  @keyframes flagFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
  }

  .india-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .india-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .india-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .made-in-india {
        padding: 3rem 0;
    }

    .flag-container {
        width: 160px;
        height: 96px;
    }

    .india-text h2 {
        font-size: 2rem;
    }

    .india-text p {
        font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .made-in-india {
        padding: 2rem 0;
    }

    .flag-container {
        width: 140px;
        height: 84px;
    }

    .india-text h2 {
        font-size: 1.75rem;
    }

    .india-text p {
        font-size: 0.95rem;
    }
  }

  /* FAQ Section */
  .faq-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.faq-section .section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.hidden {
    display: none;
}

.faq-item.blurred {
    filter: blur(5px);
    opacity: 0.5;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--red-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.faq-answer p {
    margin: 1rem 0 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.show-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 200px;
}

.show-more-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.show-more-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .faq-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .faq-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }

    .faq-grid {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .reviewer-image {
    transform: scale(1.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.25rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.rating i {
    color: #FBBC05;
    font-size: 0.9rem;
}

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #EA4335;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .google-icon {
    opacity: 1;
}

.testimonial-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.testimonial-controls {
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
  padding-top: 6rem; /* Increased top padding */
}


.prev-testimonial,
.next-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.google-review-link {
    text-align: center;
    margin-top: 2rem;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.review-button i {
    color: #4285f4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        min-width: calc(100% - 2rem);
    }

    .testimonials-slider {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .reviewer-position {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 0;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .reviewer-image {
        width: 40px;
        height: 40px;
    }

    .reviewer-info h3 {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .reviewer-position {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2.25rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.5rem;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
    border-radius: 3px;
}

.google-logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.google-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.google-logo .blue { color: #4285F4; }
.google-logo .red { color: #EA4335; }
.google-logo .yellow { color: #FBBC05; }
.google-logo .green { color: #34A853; }

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 1.75rem;
        gap: 1rem;
        padding-bottom: 1.25rem;
        margin-bottom: 2rem;
    }

    .google-logo {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
    }

    .testimonials-section h2::after {
        width: 50px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .testimonials-section h2 {
        font-size: 1.5rem;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }

    .google-logo {
        font-size: 1.25rem;
        padding: 0.3rem 0.6rem;
    }

    .testimonials-section h2::after {
        width: 40px;
        height: 2px;
    }
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-time {
    color: #888;
    font-size: 0.85rem;
}

.reviewer-position {
    color: var(--red-500);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .review-meta {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }

    .review-time {
        font-size: 0.8rem;
    }

    .reviewer-position {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .review-meta {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}









/* Container to right-align */
.cta-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* Button base */
#cta-button-Pro {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(145deg, #8B0000, #000000);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
  z-index: 1;
  backdrop-filter: blur(4px);
}

/* Hover pop effect */
#cta-button-Pro:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.6), 0 12px 30px rgba(0, 0, 0, 0.8);
}

/* Chevron icon hover effect */
#cta-button-Pro i {
  transition: transform 0.35s ease-in-out;
  position: relative;
  z-index: 2;
}

#cta-button-Pro:hover i {
  transform: translateX(6px);
}

/* Text and icon z-index */
#cta-button-Pro span {
  position: relative;
  z-index: 2;
}

/* Shockwave Effect Layer */
#cta-button-Pro .shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.25) 0%, transparent 70%);
  animation: shockwave-energy 2s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Infinite power pulse animation */
@keyframes shockwave-energy {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0.25;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
