:root {
            --primary-blue: #2E4E8C;
            --primary-green: #03A65A;
            --secondary-green: #0F8C52;
            --primary-orange: #F27B35;
            --secondary-orange: #BF6734;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            animation: headerEnter 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(-20px);
        }

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

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                backdrop-filter: blur(15px);
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f4f8 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23F27B35" opacity="0.1"><animate attributeName="cy" values="20;80;20" duration="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="%2303A65A" opacity="0.15"><animate attributeName="cy" values="80;20;80" duration="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="60" r="1" fill="%232E4E8C" opacity="0.1"><animate attributeName="cy" values="60;30;60" duration="2.5s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
}
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 80px;
        }
        
        .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green), var(--primary-orange));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite, slideInLeft 1s ease 0.3s both;
}

        @keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
        
        .hero-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .tagline {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    animation: slideInLeft 1s ease 0.1s both;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-orange);
    animation: expandWidth 2s ease 1s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 50px; }
}
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:hover::before {
    width: 600px;
    height: 600px;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            box-shadow: 0 8px 25px rgba(3, 166, 90, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(3, 166, 90, 0.4);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            box-shadow: 0 8px 25px rgba(242, 123, 53, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(242, 123, 53, 0.4);
        }
        
        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        .hero-graphic {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.15),
        inset 0 0 0 1px rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-green), 
        var(--primary-orange), 
        var(--primary-blue), 
        var(--primary-green));
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 166, 90, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

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

        .hero-graphic img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 10px;
            opacity: 0.9;
            animation: fadeInScale 1s ease 0.5s both;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 0.9;
                transform: scale(1);
            }
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-elements::before {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .floating-elements::after {
            width: 60px;
            height: 60px;
            bottom: 30%;
            right: 25%;
            animation-delay: 1.5s;
        }
        
        /* Problem Section */
        .problem-section {
            background: var(--dark-bg);
            color: white;
            padding: 80px 0;
            position: relative;
        }
        
        .problem-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .problem-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary-orange);
        }
        
        .problem-content p {
            font-size: 1.3rem;
            line-height: 1.8;
        }
        
        /* Services Section */
        .services {
            padding: 10px 0 50px 0;
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        
        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        }
        
        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, var(--primary-blue), #4a6fa5);
        }
        
        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-text {
            font-weight: 500;
            color: var(--primary-blue);
        }
        
        /* Pricing Section */
        .product-pricing {
        padding: 100px 0;
        background: var(--light-gray);
        text-align: center;
        }

        .product-pricing .section-title p {
        max-width: 600px;
        margin: 0 auto;
        color: #666;
        }

        /* Grid */
        .product-pricing .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
        }

        /* Card */
        .product-pricing .pricing-card {
        background: #fff;
        padding: 2.5rem 2rem;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-pricing .pricing-card::before {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        margin: 0 auto 1rem auto;
        background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
        border-radius: 2px;
        }

        .product-pricing .pricing-card h4 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 0.8rem;
        }

        .product-pricing .pricing-card p {
        color: #666;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        }

        .product-pricing .pricing-card a.btn-small {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
        border-radius: 50px;
        }

        .product-pricing .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        /* Highlight the middle plan */
        .product-pricing .pricing-card.featured {
        border: 2px solid var(--primary-green);
        transform: scale(1.03);
        }

        /* Responsive tweak */
        @media (max-width: 768px) {
        .product-pricing .pricing-grid {
            gap: 1.5rem;
        }

        .product-pricing .pricing-card {
            padding: 2rem 1.5rem;
        }
        }

        
        .stat {
            background: var(--light-gray);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-green);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: white;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info h3 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-info p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .contact-item i {
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-form {
            background: var(--light-gray);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 10px rgba(3, 166, 90, 0.1);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }
        
        /* Mobile Responsive */
       @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                max-height: 300px;
                opacity: 1;
            }

            .nav-links li {
                margin: 0.5rem 0;
                text-align: center;
                padding: 0.5rem 1rem;
            }

            .nav-links a {
                display: block;
                padding: 0.5rem;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .hero {
        padding-top: 40px;
    }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid,
            .features-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: Arial, sans-serif;
  animation: slideIn 0.5s ease;
  min-width: 300px;
}
.toast-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.toast-message {
  font-size: 14px;
  opacity: 0.9;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.products-showcase {
    padding: 100px 0;
    background: white; /* Contrast with the problem section and services section */
}

.product-card-single {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

.product-card-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.product-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    /* Using a gradient that aligns with the theme, like the third service card's icon */
    background: linear-gradient(135deg, var(--primary-blue), #4a6fa5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 0 8px rgba(46, 78, 140, 0.2); /* Soft outer glow */
}

.product-card-single h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.product-card-single p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Small Button Style for Product Card */
.btn-small {
    padding: 12px 25px;
    font-size: 0.95rem;
}

/* Mobile adjustments for the new section */
@media (max-width: 768px) {
    .product-card-single {
        padding: 2rem 1rem;
    }
    .product-card-single h3 {
        font-size: 1.5rem;
    }
}

/* --- Product Page Specific Styles (product-srae.php) --- */

/* 2. The Challenge - Custom list */
.challenge-product {
    /* Using a distinct background color from the main index page problem section */
    background: var(--light-gray);
    color: #333;
}

.challenge-list-product {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 2rem auto;
    padding-left: 30px; 
    color: #555;
    font-size: 1.15rem;
}

.challenge-list-product li {
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
}

.challenge-list-product li::before {
    content: "✖"; /* Custom bullet to emphasize 'The Challenge' */
    position: absolute;
    left: -30px;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1em;
    top: 0;
}

/* 3. The Solution - Feature Card Overrides */
.product-feature-card {
    min-height: 250px; 
    display: flex;
    flex-direction: column;
}

/* 4. How It Works - Step Styling */
.how-it-works-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.how-it-works-step {
    display: block;
    text-align: center;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.how-it-works-step .feature-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.result-tagline {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    padding: 20px;
    border-radius: 10px;
}

/* 5. Benefits Grid */
.benefits-grid-product {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card-product {
    background: #282828;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.benefit-card-product:hover {
    transform: translateY(-5px);
    background: #383838;
    border-bottom-color: var(--primary-orange);
}

.benefit-icon-product {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card-product h3 {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

/* 6. User Feedback */
.quotes-grid-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-card-product {
    background: white;
    padding: 2rem;
    border-left: 5px solid var(--primary-orange);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.quote-card-product footer {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* 7. Pricing */
.pricing-grid-product {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1000px;
    margin: 3rem auto 0;
}

.pricing-card-product {
    text-align: center;
    padding: 2.5rem 2rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.pricing-card-product h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-card-product p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 8. FAQ */
.faq-container-product {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item-product {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-green);
}

/* 10. Footer Links */
.product-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .challenge-list-product {
        font-size: 1rem;
    }
    .result-tagline {
        font-size: 1.2rem;
    }
    .benefits-grid-product,
    .quotes-grid-product {
        grid-template-columns: 1fr;
    }
    .pricing-card-product {
        min-height: auto;
    }
}

/* --- Unique Product Hero --- */
.product-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5faf7 50%, #eaf5ff 100%);
  overflow: hidden;
  margin-top: 38px;
}

.background-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(3,166,90,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(46,78,140,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

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

.product-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

/* Headline */
.hero-headline h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hero-headline .subtitle {
  font-size: 1.3rem;
  color: var(--primary-orange);
  margin-bottom: 2rem;
}

/* Feature badges */
.feature-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.feature-badges span {
  background: rgba(3,166,90,0.1);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

/* Product card */
.product-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease both;
}

.product-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-icon i {
  font-size: 3rem;
  color: white;
}

.card-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.product-card .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-headline h1 {
    font-size: 2.2rem;
  }
  .product-card {
    padding: 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

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

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

/* Hide answers by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}

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

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough space for answer */
  padding: 0 1rem 1rem 1rem;
}

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

/* Hide answers by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}

/* Show answers when parent .faq-item has .active */
.faq-item.active .faq-answer {
  max-height: 300px; /* adjust as needed */
  padding: 1rem;
}

/* Rotate caret when open */
.faq-item.active .faq-question i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* Portfolio */
        .portfolio {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .portfolio-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
        }
        
        .portfolio-card:hover {
            transform: translateY(-5px);
        }
        
        .portfolio-card h4 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .portfolio-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .portfolio-stats {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        /* --- NEW FULL-SCREEN VIDEO HERO DESIGN FOR PRODUCT PAGE (subjective-evaluator.php) --- */

.hero-fullscreen-video {
    /* Set height relative to viewport height for full-screen effect */
    min-height: 95vh; 
    padding: 0; /* Remove padding to allow video to stretch */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-fullscreen-video .container {
    /* Ensure the container houses the layout correctly */
    z-index: 10;
    height: 95vh; 
    display: block; 
    position: relative;
    max-width: 100%; /* Allow container to stretch for the full-screen effect */
    padding: 0;
}

.product-hero-video-layout {
    /* This element is inside the container and holds the video/CTA */
    height: 100%; 
    width: 100%;
    position: relative;
}

.video-container {
    /* Video container must take up the full available height/width */
    width: 100%;
    height: 100%;
    padding-bottom: 0; /* Override 16:9 ratio padding from standard video */
    border-radius: 0; 
    box-shadow: none;
    position: relative; /* Essential for positioning the video and overlay elements */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensures the video covers the entire container space */
    object-fit: cover;
    background: black;
}

/* CTA Overlay Styles */
.cta-overlay-group {
    position: absolute;
    bottom: 50px; /* Positioned near the bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20; /* Ensure CTAs are above the video */
    pointer-events: auto; /* Ensure buttons are clickable */
}

.cta-overlay-group .btn {
    min-width: 250px;
    text-align: center;
    font-weight: 600;
    /* Adding a slight backdrop blur for visibility over the video */
    background: rgba(46, 78, 140, 0.85); /* Primary Blue with transparency */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-overlay-group .btn-secondary {
    background: rgba(242, 123, 53, 0.85); /* Primary Orange with transparency */
}

/* Caption Overlay for elegance */
.video-caption-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 20;
    text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-fullscreen-video {
        min-height: 80vh;
    }

    .hero-fullscreen-video .container,
    .product-hero-video-layout {
        height: 80vh;
    }
    
    .cta-overlay-group {
        flex-direction: column;
        gap: 10px;
        bottom: 20px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-overlay-group .btn {
        min-width: 100%;
        padding: 15px 10px;
    }

    .video-caption-overlay {
        font-size: 0.9rem;
        top: 20px;
        max-width: 90%;
    }
}

#videoCta {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#videoCta.visible {
    opacity: 1;
    visibility: visible;
}

#videoContainer.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.hero-text-overlay {
    /* Centering */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 90%;
    max-width: 800px;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in 0.5s, visibility 0.5s ease-in 0.5s;
}

.hero-text-overlay.visible {
    opacity: 1;
    visibility: visible;
}



.hero-text-overlay .tagline {
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-text-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c3e50; 
}

.hero-text-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.hero-text-overlay .cta-buttons .btn {
    margin: 0 0.5rem;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-text-overlay .btn-secondary {
    background-color: var(--primary-orange);
    color: white;
}
.hero-text-overlay .btn-secondary:hover {
    background-color: var(--secondary-orange); 
}

.hero-text-overlay .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem; 
}

#product-hero {
    position: relative;
    overflow: hidden;   
    background: radial-gradient(circle at center, #f7f9ff, #ffffff);background: radial-gradient(circle at center, #f7f9ff, #ffffff);
}

#product-hero::before,
#product-hero::after {
    content: '';
    position: absolute;
    width: 220px;  
    height: 220px;
    border-radius: 35px; 
    opacity: 0.20;        
    z-index: 1;          
}

/* 3. The top-left ORANGE shape */
#product-hero::before {
    background-color: var(--primary-orange);
    top: -70px;
    left: -80px;
    transform: rotate(-20deg);
}

/* 4. The bottom-right GREEN shape */
#product-hero::after {
    background-color: var(--primary-green);
    bottom: -90px;
    right: -70px;
    transform: rotate(15deg);
}

.why-us-split-layout {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 45px;
    margin-top: 20px;
}

.left-column-badge {
    flex: 1;
    max-width: 350px;
    min-width: 300px;
    flex-shrink: 0; 
}

.linkedin-card-style {
    background-color: #ffffff;
    padding: 25px; 
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    //border: 1px solid #e1e1e1;
    text-align: center;
    margin: 0 auto; 
}

.linkedin-card-style .badge-base__link {
    font-size: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.right-column-features {
    flex: 2;
    width: 100%;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .why-us-split-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .left-column-badge {
        max-width: 100%;
        width: auto; 
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
}