/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff2fbf, #8e2de2);
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #ffc107;
}

.nav-item a.btn {
    padding: 10px 20px;
    background: transparent;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
}

.nav-item a.btn:hover {
    background: white;
    color: #ff4757;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* To offset fixed header */
}

.hero-content {
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #ff2fbf;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f9f9f9;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: #ff4757;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
    color: #333;
}

.contact-container {
    max-width: 400px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-number {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-number:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.warning-box {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    font-size: 14px;
    color: #ffc107;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #f9f9f9;
    color: #333;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff2fbf, #8e2de2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 47, 191, 0.3);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: #555;
}

.motivation-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.motivation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.motivation-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.motivation-title i {
    color: #ff2fbf;
    font-size: 24px;
}

.motivation-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
}

/* Referral Section */
.referral-section {
    background: white;
    padding: 80px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.referral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.referral-card {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.referral-card:hover {
    transform: scale(1.05);
}

.generation-title {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.generation-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ffc107;
}

/* Footer */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-brand {
    color: #ff2fbf;
    font-weight: 700;
}

/* Help Button */
.help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.marquee-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 15px;
  margin: 0 auto 30px;
  max-width: 800px;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.4s both;
}

.marquee-text {
  animation: scroll 20s linear infinite;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.hamburger {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .referral-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .motivation-section {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .nav-menu.active {
        max-height: 500px; /* Adjust as needed */
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        padding: 20px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-item:last-child a {
        border-bottom: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: white;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .referral-grid {
        grid-template-columns: 1fr;
    }

    .help-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
}
/* About Page Specific Styles */
.about-page-content {
    padding-top: 100px;
    padding-bottom: 40px;
}

.about-page-content .hero-section {
    margin-bottom: 40px;
    color: white;
}

.about-page-content .hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-page-content .hero-section .subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-page-content .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-page-content .card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.about-page-content .card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-page-content .card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.about-page-content .card li {
    margin-bottom: 10px;
}

.about-page-content .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.about-page-content .feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}
/* About Page - Cash Rocket Ltd. Specific Styles */
.about-page-content .company-intro-section img {
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-page-content .commitments-section ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.about-page-content .quote {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.about-page-content .tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ff2fbf;
}

.about-page-content .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-page-content .contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.about-page-content .contact-item p {
    font-size: 16px;
    margin: 0;
}