/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    position: relative;
    overflow: hidden;
}

.nav-logo a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover .logo {
    opacity: 0.8;
}



.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex: 1;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

.language-switch {
    margin-left: 0;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-top: 70px;
    pointer-events: auto; /* Ensure mouse events work */
}

/* Mobile-specific hero section padding */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 105px !important; /* Reduced from 155px to 105px (removed 50px) */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 130px !important; /* Reduced from 180px to 130px (removed 50px) */
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none; /* Allow events to pass through to hero-section */
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    background-size: 6px 6px;
    animation: backgroundMove 20s linear infinite;
    transition: all 0.3s ease;
    pointer-events: none; /* Allow events to pass through */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/textures/Background_analytics.png') no-repeat center top;
    background-size: cover;
    opacity: 0.4;
    transition: all 0.3s ease;
    pointer-events: none; /* Allow events to pass through */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.95) 40%);
    transition: all 0.3s ease;
    pointer-events: none; /* Allow events to pass through */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    pointer-events: auto; /* Allow form interactions */
    overflow: visible;
}

.hero-text {
    padding-right: 60px;
    text-align: center;
    pointer-events: auto; /* Allow text interactions */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    pointer-events: auto; /* Allow text interactions */
}

.text-highlight {
    color: #3b82f6;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: auto; /* Allow text interactions */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: center;
    pointer-events: auto; /* Allow text interactions */
}

.cta-button {
    position: relative;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto; /* Allow button interactions */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 0px;
    pointer-events: auto; /* Allow image interactions */
    overflow: visible;
}

.hero-img {
    width: auto;
    height: auto;
    max-height: 487px;
    object-fit: contain;
    transform: translateX(80px) scale(0.975);
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    bottom: -70px;
    left: calc(50% + 70px);
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background: conic-gradient(
        from 0deg,
        rgba(139, 92, 246, 0.95) 0deg,
        rgba(95, 142, 252, 0.9) 60deg,
        rgba(59, 130, 246, 0.85) 120deg,
        rgba(180, 114, 230, 0.9) 180deg,
        rgba(244, 114, 182, 0.85) 240deg,
        rgba(139, 92, 246, 0.9) 300deg,
        rgba(139, 92, 246, 0.95) 360deg
    );
    border-radius: 50%;
    filter: blur(40px);
    animation: hero-glow-float 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateX(80px) scale(0.975) translateY(0px); }
    50% { transform: translateX(80px) scale(0.975) translateY(-20px); }
}

@keyframes hero-glow-float {
    0% { 
        transform: translateX(-50%) translateY(0px) scaleX(0.8) scaleY(0.6) rotate(0deg); 
    }
    40% { 
        transform: translateX(-50%) translateY(-20px) scaleX(0.8) scaleY(0.6) rotate(360deg); 
    }
    50% { 
        transform: translateX(-50%) translateY(-20px) scaleX(0.8) scaleY(0.6) rotate(360deg); 
    }
    90% { 
        transform: translateX(-50%) translateY(0px) scaleX(0.8) scaleY(0.6) rotate(0deg); 
    }
    100% { 
        transform: translateX(-50%) translateY(0px) scaleX(0.8) scaleY(0.6) rotate(0deg); 
    }
}

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

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

@keyframes floatMobile {
    0%, 100% { transform: scale(0.9) translateX(0) translateY(0px); }
    50% { transform: scale(0.9) translateX(0) translateY(-20px); }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.contact-form .section-title {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Operators Section */
.operators-section {
    padding: 100px 0;
    background: #000000;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* slightly bigger cards */
    gap: 48px; /* more space between cards */
    justify-items: center;
    align-items: stretch;
}

.operator-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 56px 32px 48px 32px; /* more padding for bigger card */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.operator-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1);
}

.operator-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 28px;
    border: 4px solid rgba(139, 95, 246, 0.25);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.operator-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.operator-card p {
    color: #9ca3af;
    font-weight: 500;
}

/* References Section */
.references-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

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

.reference-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reference-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.reference-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-style: italic;
}

.reference-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reference-author strong {
    color: #3b82f6;
    font-weight: 600;
}

.reference-author span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Review Stars and Projects Counter */
.references-extra {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  width: 100%;
}
.references-extra-col {
  flex-direction: column;
  gap: 18px;
}
.review-stars {
  display: flex;
  gap: 6px;
  font-size: 2.2rem;
  color: #00fff7;
  filter: drop-shadow(0 0 6px #00fff733);
  text-shadow: 0 0 6px #00fff733;
}
.star {
  display: inline-block;
  animation: star-glow 1.6s ease-in-out infinite alternate;
}
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }
@keyframes star-glow {
  0% { filter: drop-shadow(0 0 4px #ffd70088); }
  100% { filter: drop-shadow(0 0 10px #fffbe655) brightness(1.1); }
}
.projects-counter {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 18px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 180px; /* Ensures enough space for 3+ digits and text */
  justify-content: flex-end;
}
.counter-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #00fff7;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-shadow: 0 0 8px #00fff744;
  margin: 0 4px 0 2px;
  transition: color 0.3s;
  font-family: 'Space Mono', 'Fira Mono', 'Menlo', monospace;
  display: inline-block;
  min-width: 32px;
  text-align: right;
}
.counter-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 2.1rem;
  font-weight: 800;
  gap: 2px;
}
.counter-label {
  color: #00fff7;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px #00fff733;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.phone-input-container {
    display: flex;
    gap: 8px;
}

.country-code-input {
    flex: 0 0 80px;
    padding: 15px 12px;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.phone-input-container input[type="tel"] {
    flex: 1;
}

.phone-group .phone-input-container input:focus {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.contact-method i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 255, 247, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 255, 247, 0.3);
    border-radius: 50%;
    margin-right: 12px;
}

.contact-method-icon i {
    color: #00fff7;
    font-size: 1.2rem;
}

.contact-method-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.contact-method-value {
    font-size: 1rem;
    color: #bdbdbd;
    font-weight: 400;
}

.contact-info-code-yellow {
    color: #e9ba56;
}

.contact-info-white {
    color: #ffffff;
}

.contact-info-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-subtitle {
    font-size: 0.9rem;
    color: #bdbdbd;
    margin: 0;
}

/* WhatsApp Contact Method */
.whatsapp-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000000;
    border: 1px solid #00fff7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 10px;
}

.whatsapp-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 247, 0.3);
    border-color: #00fff7;
}

.whatsapp-clickable .contact-method-icon {
    background: linear-gradient(135deg, #00fff7 0%, #f472b6 100%);
    border: none;
    width: 40px;
    height: 40px;
}

.whatsapp-clickable .contact-method-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.whatsapp-clickable .contact-method-label {
    color: #00fff7;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.whatsapp-clickable .contact-method-value {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #9ca3af;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #3b82f6;
}

/* Dialog */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.dialog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.dialog-content p {
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.dialog-close {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border: none;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dialog-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Custom Cursor - Disabled */
.custom-cursor {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
        justify-content: center;
        align-items: center;
        z-index: 9999; /* Ensure mobile menu appears above other elements */
    }

    .nav-menu.active {
        left: 0;
        z-index: 9999; /* Ensure active menu appears above other elements */
    }

    .nav-toggle {
        display: flex;
        z-index: 10000; /* Ensure toggle button is always clickable */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .whatsapp-contact {
        order: 3;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-section {
        padding-top: 105px !important; /* Reduced from 155px to 105px (removed 50px) */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        padding-right: 0;
        justify-content: center;
        width: 100%;
    }

    .hero-img {
        transform: scale(0.9) translateX(0) !important;
        margin: 0 auto;
        display: block;
        animation: floatMobile 6s ease-in-out infinite;
    }

    .hero-glow {
        left: 50%; /* Center the glow on mobile */
        transform: translateX(-50%); /* Center the glow on mobile */
        width: 80px; /* Reduce size by 50% (from 160px) */
        height: 80px; /* Reduce size by 50% (from 160px) */
        bottom: -10px; /* Move up by 40px more (from -50px to -10px) */
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .operators-grid,
    .references-grid {
        grid-template-columns: 1fr;
    }

    /* Additional mobile padding for smaller screens */
    .hero-section {
        padding-top: 130px !important; /* Reduced from 180px to 130px (removed 50px) */
    }

} 

/* SVG animated border for pricing cards */
.pricing-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
}

.pricing-border-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 12px #3b82f6) drop-shadow(0 0 24px #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}

.pricing-card:hover .pricing-border-svg,
.pricing-card:focus-within .pricing-border-svg {
  opacity: 1;
}

/* Remove previous ::before glow effect */
.pricing-card::before { display: none !important; }

@keyframes pricing-glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

.pricing-card:hover, .pricing-card:focus-within {
  border: none !important;
  border-color: transparent !important;
} 

.rocket-process-section {
  background: #18171c;
  border-radius: 0;
  margin: 20px 0 0 0;
  padding: 40px 0;
}
.rocket-process-container {
  display: flex;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rocket-process-left {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 600px;
}
.rocket-process-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.1;
}
.rocket-highlight {
  background: linear-gradient(90deg,#7b1fff 0%,#3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rocket-process-desc {
  color: #bdbdbd;
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.rocket-process-left .brand-btn {
  margin-top: 24px;
}
.rocket-process-right {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 500px;
}
.rocket-accordion {
  background: transparent;
  border-radius: 16px;
  width: 100%;
}
.rocket-accordion-item + .rocket-accordion-item {
  border-top: 1px solid #e6d6ff;
}
.rocket-accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.rocket-accordion-header[aria-expanded="true"] {
  color: #7b1fff;
}
.rocket-accordion-content {
  display: none;
  padding: 0 0 18px 0;
  color: #bdbdbd;
  font-size: 1.08rem;
  line-height: 1.6;
}
.rocket-accordion-header[aria-expanded="true"] + .rocket-accordion-content {
  display: block;
}
.rocket-accordion .arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.rocket-accordion-header[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  .rocket-process-container {
    flex-direction: column;
    gap: 32px;
  }
  .rocket-process-left, .rocket-process-right {
    max-width: 100%;
  }
} 



/* Why Invest in SEO Section */
.why-seo-section {
    padding: 90px 0 90px 0;
    background: linear-gradient(135deg, #18171c 0%, #1a1a2e 100%);
}
.why-seo-title {
    margin-bottom: 48px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
}
.why-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: center;
    align-items: stretch;
}
.why-seo-card {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(139, 95, 246, 0.13);
    border-radius: 18px;
    padding: 38px 28px 32px 28px;
    text-align: center;
    box-shadow: 0 4px 32px 0 rgba(59,130,246,0.04);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}
.why-seo-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(139, 95, 246, 0.13);
    border-color: #8b5cf6;
}
.why-seo-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}
.why-seo-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.why-seo-card p {
    color: #bdbdbd;
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
}
.why-seo-learn {
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 1.08rem;
}

/* Video Game Inventory Interface */
.inventory-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.inventory-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.12em;
    margin-bottom: 48px;
    font-family: 'Space Grotesk', Arial, sans-serif;
}

.inventory-interface {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

/* Left Info Panel */
.inventory-info-panel {
    flex: 1;
    padding: 32px;
}

.client-logo-display {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.client-name-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.0);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.client-logo-display img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
}

.client-details {
    margin-bottom: 32px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #bdbdbd;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.team-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.team-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #bdbdbd;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-members {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.team-member {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.team-member:hover {
    border-color: #00fff7;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Inventory Grid */
.inventory-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inventory-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 1px;
    padding: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.inventory-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 0 0 0;
}

.pagination-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.pagination-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-arrow:not(:disabled):hover {
    opacity: 0.8;
}

.arrow-triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow-triangle.left {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid rgba(255, 255, 255, 0.6);
}

.arrow-triangle.right {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid rgba(255, 255, 255, 0.6);
}

.page-indicator {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    min-width: 60px;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.inventory-slot {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.08), rgba(0, 0, 0, 0.12));
    border: 1px solid;
    border-image: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.15) 60%, 
        rgba(0, 0, 0, 1) 100%) 1;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.inventory-slot:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 247, 0.5);
    box-shadow: 0 0 12px rgba(0, 255, 247, 0.2);
}

.inventory-slot.active {
    background: rgba(0, 255, 247, 0.1);
    border-color: #00fff7;
    box-shadow: 0 0 16px rgba(0, 255, 247, 0.4);
}

.inventory-slot img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.inventory-slot:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 900px) {
    .why-seo-section {
        padding: 60px 0 60px 0;
    }
    .why-seo-title {
        font-size: 2rem;
    }
    .why-seo-card {
        min-height: 260px;
        padding: 28px 12px 24px 12px;
    }
    
    .inventory-interface {
        flex-direction: column;
        gap: 32px;
    }
    
    .inventory-grid {
        max-width: 100%;
    }
    
    .inventory-info-panel {
        order: 2;
    }
    
    .inventory-pagination {
        padding: 12px 0 0 0;
        gap: 16px;
    }
    
    .page-indicator {
        font-size: 0.8rem;
        min-width: 50px;
    }
}

@media (max-width: 600px) {
    .why-seo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-seo-section {
        padding: 36px 0 36px 0;
    }
    
    .inventory-section {
        padding: 60px 0;
    }
    
    .inventory-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    
    .inventory-interface {
        gap: 24px;
    }
    
    .inventory-info-panel {
        padding: 24px;
    }
    
    .inventory-grid {
        padding: 12px;
        gap: 6px;
    }
    
    .inventory-pagination {
        padding: 8px 0 0 0;
        gap: 12px;
    }
    
    .arrow-triangle.left {
        border-right: 8px solid rgba(255, 255, 255, 0.6);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    
    .arrow-triangle.right {
        border-left: 8px solid rgba(255, 255, 255, 0.6);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    
    .page-indicator {
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .country-code-input {
        flex: none;
        width: 100%;
    }
} 

/* --- Advanced CTA Button Styles (Bottom Section) --- */
.cta-circular-section {
  width: 100%;
  padding: 64px 0 80px 0;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-circular-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-circular-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 6rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  outline: none;
  border: 3px solid transparent;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.92) 100%
    ) padding-box,
    linear-gradient(120deg, #3b82f6 0%, #8b5cf6 60%, #f472b6 100%) border-box;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  box-shadow:
    0 1px 4px 0 rgba(34,34,34,0.10) inset,
    0 2px 16px 0 rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: gradient-shift 3s ease-in-out infinite;
  pointer-events: auto; /* Allow button interactions */
}
@keyframes shine {
  to {
    background-position: 0 0, 200% 0;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 0 0, 100% 100%;
  }
  100% {
    background-position: 0 0, 0 0;
  }
}
.cta-circular-gradient:hover,
.cta-circular-gradient:focus-visible {
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.92) 100%
    ) padding-box,
    linear-gradient(120deg, #3b82f6 0%, #8b5cf6 60%, #f472b6 100%) border-box;
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 100% 100%;
  color: #fff;
  animation: gradient-shift 1.5s ease-in-out infinite;
  box-shadow:
    0 0 16px 2px rgba(59,130,246,0.18),
    0 1px 4px 0 rgba(34,34,34,0.10) inset;
}

@keyframes cta-pulse {
  0% {
    box-shadow:
      0 0 16px 2px rgba(59,130,246,0.18),
      0 1px 4px 0 rgba(34,34,34,0.10) inset;
  }
  50% {
    box-shadow:
      0 0 32px 8px rgba(139,95,246,0.32),
      0 1px 4px 0 rgba(34,34,34,0.10) inset;
  }
  100% {
    box-shadow:
      0 0 16px 2px rgba(59,130,246,0.18),
      0 1px 4px 0 rgba(34,34,34,0.10) inset;
  }
}
@media (max-width: 600px) {
  .cta-circular-section {
    padding: 36px 0 48px 0;
  }
  .cta-circular-gradient {
    font-size: 1rem;
    padding: 0 1.2rem;
    height: 2.3rem;
  }
} 

.references-split {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}
.references-left {
  flex: 1 1 0;
  min-width: 320px;
}
.references-right {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.references-window-bg {
  position: relative !important;
  width: 100%;
  max-width: 370px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: subtle-float 3.2s ease-in-out infinite;
  perspective: 1200px;
}

.references-window-skew {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 38px 24px;
  background: rgba(0,255,247,0.1);
  border-radius: 22px;
  box-shadow:
    0 0 32px 8px #00fff7cc,
    0 0 0 6px #00fff744 inset,
    0 0 0 2px #00fff7cc inset;
  backdrop-filter: blur(28px) saturate(1.45);
  transform: perspective(1200px) rotateY(-16deg) scale(0.95);
}

.references-window-bg::before {
  content: '';
  position: absolute;
  top: 18%; left: 12%;
  width: 60px; height: 60px;
  background: radial-gradient(circle, #00fff733 0%, transparent 80%);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 1;
}
.references-window-bg::after {
  content: '';
  position: absolute;
  bottom: 14%; right: 10%;
  width: 0; height: 0;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-top: 60px solid #00fff71a;
  opacity: 0.7;
  z-index: 1;
}
.references-window-bg::before {
  content: '';
  position: absolute;
  top: 18%; left: 12%;
  width: 60px; height: 60px;
  background: radial-gradient(circle, #00fff733 0%, transparent 80%);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 1;
}
.references-window-bg .window-trophy {
  position: absolute;
  top: 12%; right: 12%;
  width: 38px; height: 38px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.references-window-bg .window-trophy svg {
  width: 100%; height: 100%;
  display: block;
  fill: #00fff7;
  filter: drop-shadow(0 0 8px #00fff733);
  opacity: 0.8;
}
.references-window-bg .window-line {
  position: absolute;
  left: 22%; top: 60%;
  width: 90px; height: 2px;
  background: linear-gradient(90deg, transparent, #00fff733 60%, transparent);
  border-radius: 2px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.window-trophy-center svg {
  width: 210px !important;
  height: 210px !important;
  min-width: 210px !important;
  min-height: 210px !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  stroke: #00fff7;
  filter: drop-shadow(0 0 18px #00fff733);
  opacity: 0.7;
}

.window-trophy-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 375px !important;
  height: 375px !important;
  z-index: 3;
  pointer-events: none;
  display: block !important;
  margin: 0 !important;
}
.window-trophy-center svg {
  width: 375px !important;
  height: 375px !important;
  min-width: 375px !important;
  min-height: 375px !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  stroke: #00fff7;
  filter: drop-shadow(0 0 18px #00fff733);
  opacity: 0.3;
}

@media (max-width: 900px) {
  .references-split {
    flex-direction: column;
    gap: 32px;
  }
  .references-right {
    justify-content: flex-start;
    width: 100%;
  }
  .references-window-bg {
    max-width: 100%;
    min-width: 0;
  }
} 

/* Roadmap Animation States */
.roadmap-step.dimmed .roadmap-step-title,
.roadmap-step.dimmed .roadmap-step-desc,
.roadmap-step.dimmed .roadmap-step-number {
    filter: brightness(0.5) grayscale(0.2);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.roadmap-step.active .roadmap-step-title,
.roadmap-step.active .roadmap-step-desc,
.roadmap-step.active .roadmap-step-number {
    filter: brightness(1) grayscale(0);
    opacity: 1;
    transition: filter 0.3s, opacity 0.3s;
}
.roadmap-step.dimmed .roadmap-step-number {
    opacity: 1;
}
.animated-roadmap-line {
    transition: background 0.4s;
}
.animated-roadmap-line.lit {
    background: linear-gradient(180deg,#f472b6 0%,#8b5cf6 50%,#3b82f6 100%);
    box-shadow: 0 0 16px 4px #8b5cf666;
} 

.animated-roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,rgba(59,130,246,0.25) 0%,rgba(139,92,246,0.18) 50%,rgba(244,114,182,0.12) 100%);
    opacity: 0.4;
    transform: translateX(-50%);
    z-index: 0;
    transition: background 0.4s, opacity 0.4s;
    overflow: hidden;
}
.animated-roadmap-line.lit {
    background: linear-gradient(180deg,#f472b6 0%,#8b5cf6 50%,#3b82f6 100%);
    box-shadow: 0 0 16px 4px #8b5cf666;
    opacity: 1;
}
.roadmap-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,#f472b6 0%,#8b5cf6 50%,#3b82f6 100%);
    box-shadow: 0 0 16px 4px #8b5cf666;
    border-radius: 2px;
    transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    pointer-events: none;
}

.roadmap-step-number {
    background: #23222a;
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 12px solid #18171c; /* Stronger mask for dimmed state */
    box-shadow: 0 4px 16px 0 rgba(139,95,246,0.10);
    position: relative;
    z-index: 3;
    transition: border 0.3s;
}
.roadmap-step.active .roadmap-step-number {
    border: 4px solid #3b82f6;
}

@media (max-width: 900px) {
    .roadmap-line {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .roadmap-step {
        flex-direction: column;
        align-items: center;
        margin-bottom: 48px;
    }
    .roadmap-step-left, .roadmap-step-right {
        text-align: center;
        padding: 0;
        justify-content: center;
    }
    .roadmap-step-center {
        margin: 16px 0;
    }
    /* Change order: number, heading, text */
    .roadmap-step-center {
        order: 1;
    }
    .roadmap-step-left {
        order: 2;
    }
    .roadmap-step-right {
        order: 3;
    }
} 

/* --- Feature Section (Why Choose Us) --- */
.feature-section {
    background: #18171c;
    padding: 80px 0 90px 0;
}
.feature-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.feature-title {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
.brand-gradient {
    background: linear-gradient(90deg,#3b82f6 0%,#8b5cf6 50%,#f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-subtitle {
    color: #bdbdbd;
    font-size: 1.18rem;
    text-align: center;
    margin-bottom: 56px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
    margin-top: 0;
}
.feature-card {
    background: #23222a;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(139,95,246,0.10);
    padding: 38px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 220px;
}
.feature-card:hover {
    box-shadow: 0 8px 40px 0 rgba(139,95,246,0.18);
    transform: translateY(-4px) scale(1.025);
}
.feature-icon {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.feature-card-desc {
    color: #bdbdbd;
    font-size: 1.05rem;
    font-weight: 400;
}
.feature-card-desc b {
    color: #8b5cf6;
    font-weight: 700;
}
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-card {
        min-height: 0;
    }
} 

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

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

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

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #9ca3af;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px; /* Increased to accommodate longer content */
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

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

/* --- Split Feature Section (Alternating Image/Text) --- */
.split-feature-section {
    background: #18171c !important;
    padding: 80px 0 60px 0 !important;
}
@media (max-width: 900px) {
    .split-feature-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}
.split-feature-row {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 48px !important;
    margin-bottom: 56px !important;
}
.split-feature-row.reverse {
    flex-direction: row-reverse !important;
}
.split-feature-text {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}
.split-feature-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #18171c;
    margin-bottom: 12px;
    color: #fff;
}
.split-feature-desc {
    color: #bdbdbd;
    font-size: 1.08rem;
    margin-bottom: 18px;
}
.split-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}
.split-feature-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.05rem;
}
.split-feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg,#3b82f6 0%,#8b5cf6 60%,#f472b6 100%);
}
.split-feature-image-wrap {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-feature-image {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px 0 rgba(139,95,246,0.10), 0 0 32px 0 #8b5cf6cc;
    background: #23222a;
}
.split-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 0 32px 0 #8b5cf655;
}
.split-feature-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(120deg,rgba(244,114,182,0.12) 60%,rgba(139,92,246,0.18) 100%);
    pointer-events: none;
    z-index: 2;
}
.split-feature-row .split-feature-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 60%;
    background: linear-gradient(135deg,#f472b6 0%,#8b5cf6 100%);
    opacity: 0.7;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 3;
}
.split-feature-row.reverse .split-feature-image::after {
    left: 0; right: auto;
    background: linear-gradient(225deg,#3b82f6 0%,#8b5cf6 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.split-feature-cta {
    display: inline-block;
    margin-top: 18px;
    color: #f472b6;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-size: 1.08rem;
    border-bottom: 2px solid #f472b6;
    transition: color 0.2s, border-color 0.2s;
}
.split-feature-cta:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
}
@media (max-width: 900px) {
    .split-feature-row, .split-feature-row.reverse {
        flex-direction: column !important;
        gap: 28px !important;
        margin-bottom: 38px !important;
    }
    .split-feature-image {
        max-width: 100% !important;
        margin-bottom: 18px !important;
    }
} 

.split-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 56px auto;
    align-items: stretch;
}
.split-feature-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-feature-grid .split-feature-image-wrap {
    align-items: center;
    justify-content: center;
}
@media (max-width: 900px) {
    .split-feature-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 28px;
    }
    .split-feature-cell {
        margin-bottom: 0;
    }
    .split-feature-image {
        max-width: 100%;
        margin-bottom: 18px;
    }
    .split-feature-grid .split-feature-image-wrap:nth-of-type(2) {
        display: none !important;
    }
} 

/* --- Benefits of SEO Section --- */
.benefits-section {
    background: #18171c;
    padding: 80px 0 60px 0;
}
.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.benefits-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 38px;
    line-height: 1.15;
}
.benefits-title .brand-gradient {
    background: linear-gradient(90deg,#3b82f6 0%,#8b5cf6 50%,#f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 36px;
}
.benefit-card {
    background: #23222a;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(139,95,246,0.08);
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
    box-shadow: 0 8px 32px 0 rgba(139,95,246,0.16);
    transform: translateY(-3px) scale(1.025);
}
.benefit-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.benefit-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.benefit-desc {
    color: #bdbdbd;
    font-size: 1.05rem;
    font-weight: 400;
}
.brand-link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.brand-link:hover {
    color: #f472b6;
}
@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-title {
        font-size: 1.5rem;
    }
} 

.related-projects-section {
    background: #23222a;
    padding: 64px 0 48px 0;
}
.related-projects-section .section-heading {
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 260px;
}
.slider-track {
    display: flex;
    gap: 48px;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    scroll-behavior: smooth;
}
.slider-track.carousel-mode {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1100px;
    min-height: 200px;
}
.slider-card {
    background: none;
    border-radius: 24px;
    box-shadow: none;
    width: 420px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 18px;
}
.slider-card.carousel-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.4s;
    z-index: 2;
}
.slider-card.carousel-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.4s;
    z-index: 1;
}
.slider-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 0 32px 0 #8b5cf6cc;
    background: #23222a;
}
.slider-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}
.slider-gradient-left {
    left: 0;
    background: linear-gradient(to right, #23222a 70%, transparent);
}
.slider-gradient-right {
    right: 0;
    background: linear-gradient(to left, #23222a 70%, transparent);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 12px #8b5cf655;
    transition: box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.slider-arrow svg {
    display: block;
    margin: 0;
}
.slider-arrow:hover {
    background: #6d3fcf;
    box-shadow: 0 0 24px #8b5cf699;
}
.slider-arrow-left {
    left: 16px;
}
.slider-arrow-right {
    right: 16px;
}
.brand-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 1.8rem;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.brand-btn--ghost {
    background: #f6f0ff;
    color: #7b1fff;
}
.brand-btn--ghost:hover,
.brand-btn--ghost:focus {
    background: #e6d6ff;
    color: #7b1fff;
}

.brand-btn--solid {
    background: #7b1fff;
    color: #fff;
}

.brand-btn--solid:hover,
.brand-btn--solid:focus {
    background: #5e13c6;
    color: #fff;
}
@media (max-width: 1200px) {
    .slider-card {
        width: 320px;
        height: 160px;
    }
    .slider-track {
        gap: 24px;
        max-width: 700px;
    }
}
@media (max-width: 900px) {
    .related-projects-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .slider-card {
        width: 220px;
        height: 120px;
    }
    .slider-track {
        gap: 12px;
        max-width: 340px;
    }
    .slider-gradient {
        width: 36px;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
} 

.success-story-section {
    background: #18171c;
    padding: 72px 0 64px 0;
}
.success-story-heading {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 44px;
    letter-spacing: -1px;
}
.success-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    background: #23222a;
    border-radius: 32px;
    box-shadow: 0 4px 32px 0 rgba(139,95,246,0.10);
    padding: 48px 40px;
}
.success-story-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}
.client-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px #8b5cf6, 0 2px 16px #3b82f655;
}
.client-info {
    display: flex;
    flex-direction: column;
}
.client-name {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.18rem;
}
.client-role {
    color: #bdbdbd;
    font-size: 1rem;
    margin-top: 2px;
}
.client-review {
    background: #18171c;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 2px 16px 0 #8b5cf655;
    color: #fff;
    font-size: 1.13rem;
    font-style: italic;
    position: relative;
}
.review-text {
    margin-bottom: 16px;
    color: #fff;
}
.review-rating {
    color: #f472b6;
    font-size: 1.3rem;
    letter-spacing: 2px;
}
.success-story-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.project-image-wrap {
    background: linear-gradient(120deg, #3b82f6 0%, #8b5cf6 60%, #f472b6 100%);
    background-size: 200% 200%;
    background-position: 0 0;
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 0 32px 0 #8b5cf655;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    animation: gradient-shift 3s ease-in-out infinite;
}
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 24px 0 #3b82f655;
    background: #23222a;
}
.case-study-link {
    all: unset;
}
.case-study-link:hover {
    background: linear-gradient(90deg, #f472b6 0%, #8b5cf6 100%);
    box-shadow: 0 0 32px #8b5cf699;
}
@media (max-width: 900px) {
    .success-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 10px;
    }
    .success-story-section {
        padding-left: 8px;
        padding-right: 8px;
    }
    .project-image-wrap {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
} 

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    cursor: pointer;
    position: relative;
    display: inline-block; /* Added this line to ensure proper positioning context */
}

/* Remove the icon and make dropdown clickable */
.nav-dropdown .nav-link::after {
    display: none; /* Hide the icon */
}

.nav-dropdown:hover .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(16, 20, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(59, 130, 246, 0.3);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    transform: translateX(5px);
}

.dropdown-link::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-link:hover::before {
    opacity: 1;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        display: none; /* Hidden by default on mobile too */
        opacity: 0;
        transform: none;
        text-align: center;
    }
    
    .nav-dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
    }
    
    .dropdown-content::before {
        display: none;
    }
    
    .nav-dropdown .nav-link::after {
        display: none; /* Hide dropdown indicator on mobile */
    }
    
    .dropdown-link {
        padding: 8px 0;
        font-size: 0.85rem;
        border-bottom: none;
        text-align: center;
    }
    
    .dropdown-link:hover {
        transform: none;
        background: transparent;
    }
}