/* Base Styles */
.coin-gen-hero {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 0 5%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.coin-gen-hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 50px;
    animation: fadeInUp 1s ease-out;
}

.coin-gen-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a237e;
    background: linear-gradient(90deg, #1a237e, #3949ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coin-gen-subtitle {
    font-size: 1.5rem;
    color: #5f6caf;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.coin-gen-hero-buttons {
    display: flex;
    gap: 20px;
}

.coin-gen-primary-btn {
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.coin-gen-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.3);
}

.coin-gen-secondary-btn {
    background: white;
    color: #3949ab;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #3949ab;
}

.coin-gen-secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.coin-gen-hero-visual {
    flex: 1;
    position: relative;
    height: 100%;
    z-index: 1;
}

.coin-gen-hero-img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(15deg);
}

.coin-gen-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('svg>');
    background-size: 20px 20px;
    opacity: 0.3;
    animation: particleMove 100s linear infinite;
}

/* Features Section */
.coin-gen-features {
    padding: 100px 5%;
    background: white;
    position: relative;
}

.coin-gen-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.coin-gen-preheading {
    display: inline-block;
    color: #3949ab;
    background: #e8eaf6;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.coin-gen-heading {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.coin-gen-description {
    color: #5f6caf;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coin-gen-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.coin-gen-feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(57, 73, 171, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8eaf6;
    overflow: hidden;
}

.coin-gen-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(57, 73, 171, 0.2);
}

.coin-gen-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3949ab, #1a237e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coin-gen-feature-card:hover::before {
    opacity: 1;
}

.coin-gen-feature-highlight {
    border: 1px solid #3949ab;
    background: #f5f7ff;
}

.coin-gen-feature-highlight::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: #3949ab;
    border-radius: 50%;
    z-index: 0;
}

.coin-gen-highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3949ab;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.coin-gen-feature-icon {
    width: 80px;
    height: 80px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.coin-gen-feature-icon img {
    width: 40px;
    height: 40px;
}

.coin-gen-feature-card h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 15px;
}

.coin-gen-feature-card p {
    color: #5f6caf;
    margin-bottom: 20px;
    line-height: 1.6;
}

.coin-gen-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coin-gen-feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #5f6caf;
}

.coin-gen-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    background: #3949ab;
    border-radius: 50%;
    opacity: 0.3;
}

/* Types Section */
.coin-gen-types {
    padding: 100px 5%;
    background: #f5f7fa;
}

.coin-gen-types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coin-gen-type-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.coin-gen-type-tab {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #5f6caf;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coin-gen-type-tab:hover {
    color: #3949ab;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 73, 171, 0.1);
}

.coin-gen-type-tab.active {
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.coin-gen-type-content {
    display: none;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coin-gen-type-content.active {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

.coin-gen-type-visual {
    flex: 1;
    position: relative;
}

.coin-gen-type-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coin-gen-type-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 20px;
}

.coin-gen-stat {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 100px;
}

.coin-gen-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
}

.coin-gen-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #5f6caf;
    margin-top: 5px;
}

.coin-gen-type-details {
    flex: 1;
    padding: 50px;
}

.coin-gen-type-details h3 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.coin-gen-type-details p {
    color: #5f6caf;
    margin-bottom: 25px;
    line-height: 1.6;
}

.coin-gen-type-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.coin-gen-type-details li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #5f6caf;
}

.coin-gen-type-details li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #3949ab;
    font-weight: bold;
}

.coin-gen-tech-stack {
    margin-top: 40px;
}

.coin-gen-tech-stack span {
    display: block;
    color: #5f6caf;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.coin-gen-tech-icons {
    display: flex;
    gap: 15px;
}

.coin-gen-tech-icons img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.coin-gen-tech-icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Process Section */
.coin-gen-process {
    padding: 100px 5%;
    background: white;
}

.coin-gen-process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.coin-gen-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3949ab, #1a237e);
    border-radius: 10px;
}

.coin-gen-process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    align-items: center;
}

.coin-gen-process-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.coin-gen-process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    background: #e8eaf6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(57, 73, 171, 0.1);
}

.coin-gen-process-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8eaf6;
}

.coin-gen-process-item h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.coin-gen-process-item p {
    color: #5f6caf;
    margin-bottom: 15px;
    line-height: 1.6;
}

.coin-gen-process-item ul {
    list-style: none;
    padding: 0;
}

.coin-gen-process-item li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #5f6caf;
}

.coin-gen-process-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #3949ab;
    border-radius: 50%;
}

.coin-gen-process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3949ab 0%, #1a237e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 30px;
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.2);
}

.coin-gen-process-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Benefits Section */
.coin-gen-benefits {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.coin-gen-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.coin-gen-benefits-content {
    flex: 1;
}

.coin-gen-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coin-gen-benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.coin-gen-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coin-gen-benefit-icon {
    width: 60px;
    height: 60px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coin-gen-benefit-icon img {
    width: 30px;
    height: 30px;
}

.coin-gen-benefit-text h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.coin-gen-benefit-text p {
    color: #5f6caf;
    line-height: 1.6;
}

.coin-gen-benefits-visual {
    flex: 1;
    position: relative;
}

.coin-gen-stats-card {
    position: absolute;
    top: 50px;
    left: -50px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.coin-gen-stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e8eaf6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coin-gen-stat-circle span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
}

.coin-gen-stat-circle p {
    font-size: 0.8rem;
    color: #5f6caf;
    margin-top: 5px;
}

.coin-gen-benefits-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg);
}

.coin-gen-tech-logos {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
}

.coin-gen-tech-logos img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.coin-gen-tech-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.coin-gen-cta {
    padding: 100px 5%;
    background: linear-gradient(135deg, #d7dbf3 0%, #f7f8ff 100%);
    color: white;
}

.coin-gen-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.coin-gen-cta-content {
    flex: 1;
    z-index: 2;
}

.coin-gen-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
	color: #1a237e;
}

.coin-gen-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.coin-gen-cta-buttons {
    display: flex;
    gap: 20px;
}

.coin-gen-cta-visual {
    flex: 1;
    position: relative;
}

.coin-gen-cta-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.coin-gen-cta-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: url('svg>');
    background-size: 20px 20px;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(15deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(15deg) translateY(-20px);
    }
    100% {
        transform: perspective(1000px) rotateY(15deg) translateY(0);
    }
}

@keyframes particleMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 1000px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .coin-gen-hero {
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .coin-gen-hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .coin-gen-hero-buttons {
        justify-content: center;
    }
    
    .coin-gen-type-content.active {
        flex-direction: column;
    }
    
    .coin-gen-benefits-container {
        flex-direction: column;
    }
    
    .coin-gen-stats-card {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 30px;
    }
    
    .coin-gen-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .coin-gen-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .coin-gen-title {
        font-size: 2.5rem;
    }
    
    .coin-gen-subtitle {
        font-size: 1.2rem;
    }
    
    .coin-gen-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .coin-gen-process-timeline::before {
        left: 40px;
    }
    
    .coin-gen-process-item, .coin-gen-process-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-left: 80px;
    }
    
    .coin-gen-process-number {
        position: absolute;
        left: -80px;
        top: 0;
    }
    
    .coin-gen-process-icon {
        display: none;
    }
    
    .coin-gen-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .coin-gen-title {
        font-size: 2rem;
    }
    
    .coin-gen-heading {
        font-size: 1.8rem;
    }
    
    .coin-gen-type-tabs {
        flex-direction: column;
    }
    
    .coin-gen-cta-buttons {
        flex-direction: column;
    }
}

/* Base Styles */
.coin-gen-sec {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

.coin-gen-sec h1, 
.coin-gen-sec h2, 
.coin-gen-sec h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.coin-gen-sec p {
    margin-bottom: 1.5rem;
}

.coin-gen-sec-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4f46e5, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.coin-gen-sec-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #10b981);
    border-radius: 2px;
}

.coin-gen-sec-section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Hero Section */
.coin-gen-sec-hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.coin-gen-sec-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 242, 247, 0.9) 0%, rgba(247, 250, 252, 0.9) 100%);
    z-index: -1;
}

.coin-gen-sec-hero-content {
    flex: 1;
    padding-right: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.coin-gen-sec-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.1;
}

.coin-gen-sec-hero-subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.coin-gen-sec-hero-buttons {
    display: flex;
    gap: 1rem;
}

.coin-gen-sec-primary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.coin-gen-sec-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.coin-gen-sec-secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.coin-gen-sec-secondary-btn:hover {
    background-color: #4f46e5;
    color: white;
}

.coin-gen-sec-hero-visual {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.coin-gen-sec-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: float 6s ease-in-out infinite;
}

.coin-gen-sec-hero-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%234f46e5" stroke-width="2" stroke-dasharray="5,5"/></svg>');
    opacity: 0.2;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

/* Features Section */
.coin-gen-sec-features {
    padding: 6rem 2rem;
    background-color: #f7fafc;
    position: relative;
}

.coin-gen-sec-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.coin-gen-sec-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coin-gen-sec-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.coin-gen-sec-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #c7d2fe;
}

.coin-gen-sec-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #10b981);
}

.coin-gen-sec-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    margin-bottom: 1.5rem;
}

.coin-gen-sec-feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.coin-gen-sec-feature-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.coin-gen-sec-feature-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.coin-gen-sec-feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0e7ff;
    color: #4f46e5;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Process Section */
.coin-gen-sec-process {
    padding: 6rem 2rem;
    background-color: white;
}

.coin-gen-sec-process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.coin-gen-sec-process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4f46e5, #10b981);
    z-index: 0;
}

.coin-gen-sec-process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.coin-gen-sec-process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.coin-gen-sec-process-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 2rem;
    box-shadow: 0 10px 15px rgba(79, 70, 229, 0.2);
}

.coin-gen-sec-process-content {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    flex-grow: 1;
    position: relative;
    top: 20px;
}

.coin-gen-sec-process-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.coin-gen-sec-process-content p {
    color: #4a5568;
}

.coin-gen-sec-process-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.1));
}

/* Use Cases Section */
.coin-gen-sec-usecases {
    padding: 6rem 2rem;
    background-color: #f7fafc;
}

.coin-gen-sec-usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coin-gen-sec-usecase-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.coin-gen-sec-usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.coin-gen-sec-usecase-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.coin-gen-sec-usecase-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.coin-gen-sec-usecase-content {
    padding: 2rem;
}

.coin-gen-sec-usecase-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.coin-gen-sec-usecase-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.coin-gen-sec-usecase-benefits {
    list-style-type: none;
    padding: 0;
}

.coin-gen-sec-usecase-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.coin-gen-sec-usecase-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #4f46e5;
    border-radius: 50%;
}

/* Tech Stack Section */
.coin-gen-sec-techstack {
    padding: 6rem 2rem;
    background-color: white;
}

.coin-gen-sec-techstack-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.coin-gen-sec-techstack-left {
    flex: 1;
}

.coin-gen-sec-techstack-right {
    flex: 1;
    position: relative;
}

.coin-gen-sec-techstack-item {
    margin-bottom: 3rem;
}

.coin-gen-sec-techstack-item h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.coin-gen-sec-techstack-item p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.coin-gen-sec-techstack-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.coin-gen-sec-techstack-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.coin-gen-sec-techstack-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.coin-gen-sec-techstack-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.coin-gen-sec-techstack-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.coin-gen-sec-techstack-pattern {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="%234f46e5" stroke-width="2" stroke-dasharray="5,5"/></svg>');
    opacity: 0.2;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* CTA Section */
.coin-gen-sec-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #8b84f9, #3663e1);
    color: white;
    position: relative;
    overflow: hidden;
}

.coin-gen-sec-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coin-gen-sec-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
	color:#FFFFFF;
}

.coin-gen-sec-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
		color:#FFFFFF;

}

.coin-gen-sec-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #4f46e5;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coin-gen-sec-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.coin-gen-sec-cta-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="white" stroke-width="2" stroke-dasharray="5,5" opacity="0.2"/></svg>');
    opacity: 0.1;
    z-index: 0;
    animation: rotate 30s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .coin-gen-sec-hero {
        flex-direction: column;
        padding: 4rem 1rem;
    }
    
    .coin-gen-sec-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .coin-gen-sec-hero-title {
        font-size: 2.5rem;
    }
    
    .coin-gen-sec-hero-subtitle {
        font-size: 1.25rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .coin-gen-sec-hero-buttons {
        justify-content: center;
    }
    
    .coin-gen-sec-techstack-container {
        flex-direction: column;
    }
    
    .coin-gen-sec-techstack-right {
        order: -1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .coin-gen-sec-section-title {
        font-size: 2rem;
    }
    
    .coin-gen-sec-section-subtitle {
        font-size: 1.1rem;
    }
    
    .coin-gen-sec-process-steps::before {
        left: 40px;
    }
    
    .coin-gen-sec-process-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .coin-gen-sec-process-arrow {
        display: none;
    }
}

/* Intersection Observer Animation */
.coin-gen-sec-process-step:nth-child(1) { transition-delay: 0.1s; }
.coin-gen-sec-process-step:nth-child(2) { transition-delay: 0.2s; }
.coin-gen-sec-process-step:nth-child(3) { transition-delay: 0.3s; }
.coin-gen-sec-process-step:nth-child(4) { transition-delay: 0.4s; }
.coin-gen-sec-process-step:nth-child(5) { transition-delay: 0.5s; }


/* Base Styles */
.coin-gen-ico-service {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
}

.coin-gen-ico-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.coin-gen-ico-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.coin-gen-ico-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 5%;
  animation: fadeInUp 1s ease-out;
}

.coin-gen-ico-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coin-gen-ico-subtitle {
  font-size: 1.5rem;
  color: #4a5568;
  max-width: 80%;
  margin-bottom: 2.5rem;
}

.coin-gen-ico-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.coin-gen-ico-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coin-gen-ico-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(240,244,255,0.8) 0%, rgba(240,244,255,0) 100%);
}

.coin-gen-ico-scroll-indicator {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  animation: bounce 2s infinite;
}

.coin-gen-ico-scroll-text {
  margin-right: 10px;
  color: #4f46e5;
  font-weight: 500;
}

.coin-gen-ico-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #4f46e5;
  border-bottom: 2px solid #4f46e5;
  transform: rotate(45deg);
}

/* Service Overview */
.coin-gen-ico-overview {
  padding: 8rem 0;
  background-color: #ffffff;
  position: relative;
}

.coin-gen-ico-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, #f0f4ff, rgba(240,244,255,0));
  z-index: 0;
}

.coin-gen-ico-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  color: #1a202c;
}

.coin-gen-ico-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.coin-gen-ico-section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #4a5568;
}

.coin-gen-ico-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.coin-gen-ico-feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.coin-gen-ico-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.coin-gen-ico-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coin-gen-ico-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coin-gen-ico-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.coin-gen-ico-feature-card p {
  color: #4a5568;
}

/* Process Section */
.coin-gen-ico-process {
  padding: 8rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.coin-gen-ico-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.coin-gen-ico-timeline {
  position: relative;
  max-width: 800px;
  margin: 5rem auto 0;
  padding-left: 50px;
}

.coin-gen-ico-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #4f46e5, #10b981);
  border-radius: 2px;
}

.coin-gen-ico-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.coin-gen-ico-timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.coin-gen-ico-timeline-marker {
  position: absolute;
  left: -50px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(79,70,229,0.3);
}

.coin-gen-ico-timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
}

.coin-gen-ico-timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.coin-gen-ico-timeline-content p {
  color: #4a5568;
}

/* Blockchain Options */
.coin-gen-ico-blockchains {
  padding: 8rem 0;
  background-color: #ffffff;
}

.coin-gen-ico-blockchain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.coin-gen-ico-blockchain-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.coin-gen-ico-blockchain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #c7d2fe;
}

.coin-gen-ico-blockchain-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.coin-gen-ico-blockchain-card:hover img {
  filter: grayscale(0%);
}

.coin-gen-ico-blockchain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.coin-gen-ico-blockchain-card p {
  color: #4a5568;
  font-size: 0.95rem;
}

/* Advantages Section */
.coin-gen-ico-advantages {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.coin-gen-ico-advantage-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.coin-gen-ico-advantage-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.coin-gen-ico-advantage-card:hover {
  transform: translateY(-10px);
}

.coin-gen-ico-advantage-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.coin-gen-ico-advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.coin-gen-ico-advantage-card p {
  color: #4a5568;
}

.coin-gen-ico-expertise {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 6rem;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.coin-gen-ico-expertise-content {
  flex: 1;
}

.coin-gen-ico-expertise-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.coin-gen-ico-expertise-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.coin-gen-ico-expertise-image:hover img {
  transform: scale(1.05);
}

.coin-gen-ico-expertise-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1f1d88;
}

.coin-gen-ico-expertise-content p {
  color: #4a5568;
  margin-bottom: 2rem;
}

.coin-gen-ico-expertise-list {
  columns: 2;
  column-gap: 2rem;
  margin-top: 1.5rem;
}

.coin-gen-ico-expertise-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: #4a5568;
  break-inside: avoid;
}

.coin-gen-ico-expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #4f46e5 0%, #10b981 100%);
}

/* CTA Section */
.coin-gen-ico-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
  color: white;
  text-align: center;
}

.coin-gen-ico-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.coin-gen-ico-cta-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
    color: #FFFFFF;

}

.coin-gen-ico-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.coin-gen-ico-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #4f46e5;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coin-gen-ico-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coin-gen-ico-cta-button-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.coin-gen-ico-cta-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .coin-gen-ico-hero-content {
    width: 60%;
  }
  
  .coin-gen-ico-hero-image {
    width: 50%;
  }
  
  .coin-gen-ico-expertise {
    flex-direction: column;
  }
  
  .coin-gen-ico-expertise-image {
    margin-top: 2rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .coin-gen-ico-hero {
    flex-direction: column;
    height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  
  .coin-gen-ico-hero-content {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .coin-gen-ico-main-title {
    font-size: 2.5rem;
  }
  
  .coin-gen-ico-subtitle {
    max-width: 100%;
    font-size: 1.2rem;
  }
  
  .coin-gen-ico-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
  }
  
  .coin-gen-ico-scroll-indicator {
    justify-content: center;
  }
  
  .coin-gen-ico-timeline {
    padding-left: 30px;
  }
  
  .coin-gen-ico-timeline-marker {
    left: -30px;
    width: 30px;
    height: 30px;
  }
  
  .coin-gen-ico-expertise-list {
    columns: 1;
  }
}

@media (max-width: 480px) {
  .coin-gen-ico-main-title {
    font-size: 2rem;
  }
  
  .coin-gen-ico-section-title {
    font-size: 2rem;
  }
  
  .coin-gen-ico-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .coin-gen-ico-cta-button,
  .coin-gen-ico-cta-button-secondary {
    width: 100%;
    text-align: center;
  }
}


.coin-gen-ico-dashboard {
  background: #ffffff;
  padding: 80px 20px;
}

.coin-gen-ico-dashboard .coin-gen-ico-container {
  max-width: 1200px;
  margin: 0 auto;
}

.coin-gen-ico-dashboard .coin-gen-ico-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1f1d88;
}

.coin-gen-ico-dashboard .coin-gen-ico-section-intro {
  font-size: 1rem;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 700px;
  color: #666;
}

.coin-gen-ico-dashboard-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.coin-gen-ico-dashboard-feature {
  background: #f1f6ff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coin-gen-ico-dashboard-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.coin-gen-ico-dashboard-feature i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 15px;
  display: inline-block;
}

.coin-gen-ico-dashboard-feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.coin-gen-ico-dashboard-feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.coin-gen-ico-global-reach {
  background: linear-gradient(to bottom right, #f0f4ff, #ffffff);
  padding: 80px 20px;
}

.coin-gen-ico-container {
  max-width: 1200px;
  margin: 0 auto;
}

.coin-gen-ico-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1f1d88;
}

.coin-gen-ico-section-intro {
  font-size: 1rem;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 700px;
  color: #666;
}

.coin-gen-ico-global-reach-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 30px;
}

.coin-gen-ico-global-reach-stat {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.coin-gen-ico-global-reach-stat:hover {
  transform: translateY(-5px);
}

.coin-gen-ico-global-reach-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 10px;
}

.coin-gen-ico-global-reach-stat p {
  font-size: 1rem;
  color: #333;
}

/* DEFI STAKING SOLUTIONS CSS */
.defi-gen-staking-hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 0 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    position: relative;
    overflow: hidden;
}

.defi-gen-staking-hero-content {
    flex: 1;
    padding-right: 5%;
    z-index: 2;
}

.defi-gen-staking-hero h1 {
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.defi-gen-staking-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.defi-gen-staking-cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.defi-gen-staking-primary-btn {
    background: #1f1d88;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.defi-gen-staking-primary-btn:hover {
    background: #3a38a8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.defi-gen-staking-secondary-btn {
    border: 2px solid #1f1d88;
    color: #1f1d88;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.defi-gen-staking-secondary-btn:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
}

.defi-gen-staking-hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.defi-gen-staking-hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-15deg);
    border: 15px solid white;
}

.defi-gen-staking-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(92, 124, 250, 0.2) 0%, rgba(92, 124, 250, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.defi-gen-staking-benefits {
    padding: 8rem 5%;
    background: white;
}

.defi-gen-staking-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.defi-gen-staking-benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.defi-gen-staking-section-tag {
    display: inline-block;
    background: #eef1ff;
    color: #1f1d88;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.defi-gen-staking-benefits-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-benefits-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.defi-gen-staking-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.defi-gen-staking-benefit-card {
    background: #f9faff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e6e9ff;
    position: relative;
    overflow: hidden;
}

.defi-gen-staking-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(31, 29, 136, 0.1);
    border-color: #d1d6ff;
}

.defi-gen-staking-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1f1d88, #5c7cfa);
}

.defi-gen-staking-benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.defi-gen-staking-benefit-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.defi-gen-staking-benefit-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-benefit-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.defi-gen-staking-benefit-stats {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.defi-gen-staking-benefit-stats span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f1d88;
    display: block;
    line-height: 1;
}

.defi-gen-staking-benefit-stats small {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

.defi-gen-staking-models {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
}

.defi-gen-staking-models-container {
    max-width: 1200px;
    margin: 0 auto;
}

.defi-gen-staking-models-header {
    text-align: center;
    margin-bottom: 5rem;
}

.defi-gen-staking-models-header .defi-gen-staking-section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.defi-gen-staking-models-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.defi-gen-staking-models-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.defi-gen-staking-model {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.defi-gen-staking-model:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.defi-gen-staking-model-visual {
    flex: 1;
    position: relative;
}

.defi-gen-staking-model-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.defi-gen-staking-model-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.defi-gen-staking-model-content {
    flex: 1;
    padding: 3rem;
    color: #333;
}

.defi-gen-staking-model-content h3 {
    font-size: 1.8rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-model-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.defi-gen-staking-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.defi-gen-staking-feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.defi-gen-staking-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1f1d88;
    border-radius: 50%;
}

.defi-gen-staking-model-cta {
    color: #1f1d88;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.defi-gen-staking-model-cta:hover {
    color: #3a38a8;
    gap: 1rem;
}

.defi-gen-staking-technical {
    padding: 8rem 5%;
    background: #f9faff;
}

.defi-gen-staking-technical-container {
    max-width: 1200px;
    margin: 0 auto;
}

.defi-gen-staking-technical-header {
    text-align: center;
    margin-bottom: 5rem;
}

.defi-gen-staking-technical-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-technical-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.defi-gen-staking-technical-feature {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.defi-gen-staking-technical-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.defi-gen-staking-technical-icon {
    width: 100px;
    height: 100px;
    background: #eef1ff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.defi-gen-staking-technical-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.defi-gen-staking-technical-content h3 {
    font-size: 1.8rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-technical-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.defi-gen-staking-technical-stats {
    display: flex;
    gap: 3rem;
}

.defi-gen-staking-technical-stats div {
    text-align: center;
}

.defi-gen-staking-technical-stats span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1d88;
    display: block;
    line-height: 1;
}

.defi-gen-staking-technical-stats small {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-top: 0.5rem;
}

.defi-gen-staking-technical-chain-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.defi-gen-staking-technical-chain-logos img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.defi-gen-staking-technical-chain-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.defi-gen-staking-showcase {
    padding: 8rem 5%;
    background: white;
}

.defi-gen-staking-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.defi-gen-staking-showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

.defi-gen-staking-showcase-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.defi-gen-staking-showcase-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.defi-gen-staking-showcase-project {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.defi-gen-staking-showcase-visual {
    width: 100%;
    height: 100%;
}

.defi-gen-staking-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.defi-gen-staking-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.9) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.defi-gen-staking-showcase-project:hover .defi-gen-staking-showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.defi-gen-staking-showcase-project:hover img {
    transform: scale(1.05);
}

.defi-gen-staking-showcase-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.defi-gen-staking-showcase-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.defi-gen-staking-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}

.defi-gen-staking-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.defi-gen-staking-cta-content {
    flex: 1;
}

.defi-gen-staking-cta-content h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
}

.defi-gen-staking-cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.defi-gen-staking-cta-buttons {
    display: flex;
    gap: 1rem;
}

.defi-gen-staking-outline-btn {
    border: 2px solid #1f1d88;
    color: #1f1d88;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.defi-gen-staking-outline-btn:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
}

.defi-gen-staking-cta-visual {
    flex: 1;
    position: relative;
}

.defi-gen-staking-cta-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(15deg);
    border: 15px solid white;
}

.defi-gen-staking-cta-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%231f1d88" stroke-width="2" stroke-dasharray="5,5"/></svg>');
    top: -50px;
    right: -50px;
    z-index: -1;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-15deg) translateY(-20px);
    }
    100% {
        transform: perspective(1000px) rotateY(-15deg) translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .defi-gen-staking-hero {
        flex-direction: column;
        padding-top: 5rem;
    }
    
    .defi-gen-staking-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .defi-gen-staking-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .defi-gen-staking-cta-buttons {
        justify-content: center;
    }
    
    .defi-gen-staking-cta-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .defi-gen-staking-cta-content {
        text-align: center;
    }
    
    .defi-gen-staking-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .defi-gen-staking-hero h1 {
        font-size: 2.5rem;
    }
    
    .defi-gen-staking-model {
        flex-direction: column;
    }
    
    .defi-gen-staking-showcase-projects {
        grid-template-columns: 1fr;
    }
    
    .defi-gen-staking-technical-feature {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .defi-gen-staking-technical-stats {
        justify-content: center;
    }
    
    .defi-gen-staking-technical-chain-logos {
        justify-content: center;
    }
}

/* Cross-Chain DeFi Solutions CSS */
.defi-cross {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.defi-cross-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecfe 100%);
  padding: 0 5%;
}

.defi-cross-hero-content {
  max-width: 600px;
  z-index: 2;
}

.defi-cross-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.defi-cross-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.defi-cross-cta-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.defi-cross-primary-btn {
  background: #1f1d88;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.defi-cross-primary-btn:hover {
  background: #3a38a8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.defi-cross-secondary-btn {
  border: 2px solid #1f1d88;
  color: #1f1d88;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.defi-cross-secondary-btn:hover {
  background: #1f1d88;
  color: white;
  transform: translateY(-3px);
}

.defi-cross-hero-visual {
  position: relative;
  width: 50%;
  animation: fadeInRight 0.8s ease-out;
}

.defi-cross-hero-image {
  width: 100%;
  max-width: 700px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(31, 29, 136, 0.15));
}

.defi-cross-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/always-grey.png');
  opacity: 0.1;
  z-index: 1;
}

/* Features Section */
.defi-cross-features {
  background: white;
  padding: 8rem 5%;
}

.defi-cross-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.defi-cross-section-header h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.defi-cross-section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
}

.defi-cross-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.defi-cross-feature-card {
  background: #f9faff;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e7ff;
}

.defi-cross-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(31, 29, 136, 0.1);
}

.defi-cross-feature-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.1);
}

.defi-cross-feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.defi-cross-feature-card h3 {
  font-size: 1.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.defi-cross-feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

.defi-cross-feature-animation {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(31, 29, 136, 0.05);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
  animation: pulse 4s infinite ease-in-out;
}

/* Solutions Section */
.defi-cross-solutions {
  background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
  color: white;
}

.defi-cross-solutions-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.defi-cross-solutions-content {
  flex: 1;
}

.defi-cross-solutions h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.defi-cross-solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.defi-cross-solution-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.defi-cross-solution-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.defi-cross-solution-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.defi-cross-solution-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.defi-cross-solution-details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.defi-cross-solutions-visual {
  flex: 1;
  position: relative;
}

.defi-cross-solutions-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.defi-cross-solutions-graph {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: url('https://www.transparenttextures.com/patterns/graphy-dark.png');
  opacity: 0.2;
  z-index: -1;
}

/* Technology Section */
.defi-cross-technology {
  background: white;
  padding: 8rem 5%;
}

.defi-cross-technology-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.defi-cross-tech-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9faff;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.defi-cross-tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.1);
}

.defi-cross-tech-logo {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(31, 29, 136, 0.1);
}

.defi-cross-tech-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.defi-cross-tech-details h3 {
  font-size: 1.1rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.defi-cross-tech-details p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
}

.defi-cross-tech-visual {
  max-width: 800px;
  height: 200px;
  margin: 4rem auto 0;
  position: relative;
}

.defi-cross-tech-connections {
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/connected.png');
  opacity: 0.1;
  animation: scrollBackground 20s linear infinite;
}

/* Benefits Section */
.defi-cross-benefits {
  background: #f9faff;
  padding: 8rem 5%;
}

.defi-cross-benefits-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.defi-cross-benefits-content {
  flex: 1;
}

.defi-cross-benefits h2 {
  color: #1f1d88;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.defi-cross-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.defi-cross-benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.defi-cross-benefit-icon {
  width: 30px;
  height: 30px;
  background: #1f1d88;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.defi-cross-benefit-text {
  color: #4a5568;
  line-height: 1.6;
}

.defi-cross-benefit-text strong {
  color: #1f1d88;
}

.defi-cross-benefits-visual {
  flex: 1;
  position: relative;
}

.defi-cross-benefits-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31, 29, 136, 0.1);
}

.defi-cross-benefits-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-image: url('https://www.transparenttextures.com/patterns/graphy.png');
  opacity: 0.1;
  z-index: -1;
}

/* CTA Section */
.defi-cross-cta {
  background: linear-gradient(135deg, #3a38a8 0%, #1f1d88 100%);
  color: white;
  padding: 6rem 5%;
}

.defi-cross-cta-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.defi-cross-cta-content {
  flex: 1;
}

.defi-cross-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.defi-cross-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.defi-cross-cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.defi-cross-cta-visual {
  flex: 1;
  position: relative;
}

.defi-cross-cta-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.defi-cross-cta-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s infinite ease-in-out;
  z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .defi-cross-hero {
    flex-direction: column;
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .defi-cross-hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .defi-cross-hero-visual {
    width: 100%;
  }
  
  .defi-cross-cta-buttons {
    justify-content: center;
  }
  
  .defi-cross-solutions-container,
  .defi-cross-benefits-container,
  .defi-cross-cta-container {
    flex-direction: column;
  }
  
  .defi-cross-solutions-content,
  .defi-cross-benefits-content,
  .defi-cross-cta-content {
    order: 1;
  }
  
  .defi-cross-solutions-visual,
  .defi-cross-benefits-visual,
  .defi-cross-cta-visual {
    order: 2;
  }
}

@media (max-width: 768px) {
  .defi-cross-hero h1 {
    font-size: 2.5rem;
  }
  
  .defi-cross-section-header h2 {
    font-size: 2rem;
  }
  
  .defi-cross-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Smart Contract Development Service Styles */
.smart-contract-gen-hero {
    display: flex;
    min-height: 90vh;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    align-items: center;
    padding: 0 5%;
}

.smart-contract-gen-hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    animation: smart-contract-gen-fadeInUp 1s ease-out;
}

.smart-contract-gen-hero h1 {
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.smart-contract-gen-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.smart-contract-gen-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.smart-contract-gen-primary-btn {
    background: #1f1d88;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 29, 136, 0.2);
}

.smart-contract-gen-primary-btn:hover {
    background: #15136b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 29, 136, 0.3);
}

.smart-contract-gen-secondary-btn {
    border: 2px solid #1f1d88;
    color: #1f1d88;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.smart-contract-gen-secondary-btn:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
}

.smart-contract-gen-hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    z-index: 1;
}

.smart-contract-gen-hero-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: smart-contract-gen-float 6s ease-in-out infinite;
}

.smart-contract-gen-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="%231f1d88" stroke-width="0.5" stroke-opacity="0.2"><circle cx="50" cy="50" r="40"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: -1;
}

/* About Section */
.smart-contract-gen-about {
    display: flex;
    padding: 8rem 5%;
    gap: 5rem;
    align-items: center;
    background: white;
}

.smart-contract-gen-about-image {
    flex: 1;
    position: relative;
}

.smart-contract-gen-about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.smart-contract-gen-animated-dots {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#1f1d88 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: smart-contract-gen-moveDots 20s linear infinite;
}

.smart-contract-gen-about-content {
    flex: 1;
}

.smart-contract-gen-about h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
}

.smart-contract-gen-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.smart-contract-gen-feature-list {
    list-style: none;
    padding: 0;
}

.smart-contract-gen-feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #333;
}

.smart-contract-gen-check-icon {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background-color: #1f1d88;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    mask-repeat: no-repeat;
    mask-position: center;
}

/* Services Section */
.smart-contract-gen-services {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #f9faff 0%, #ffffff 100%);
}

.smart-contract-gen-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.smart-contract-gen-section-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.smart-contract-gen-section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.smart-contract-gen-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1f1d88, #4f46e5);
    margin: 0 auto;
    border-radius: 2px;
}

.smart-contract-gen-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.smart-contract-gen-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.smart-contract-gen-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.smart-contract-gen-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 29, 136, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
    z-index: -1;
}

.smart-contract-gen-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1d88 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.smart-contract-gen-service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.smart-contract-gen-service-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.smart-contract-gen-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.smart-contract-gen-service-card ul {
    list-style: none;
    padding: 0;
}

.smart-contract-gen-service-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.smart-contract-gen-service-card ul li::before {
    content: '�';
    position: absolute;
    left: 0;
    color: #1f1d88;
    font-weight: bold;
}

/* Process Section */
.smart-contract-gen-process {
    padding: 6rem 5%;
    background: #1f1d88;
    color: white;
    position: relative;
    overflow: hidden;
}

.smart-contract-gen-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"><circle cx="50" cy="50" r="40"/></svg>');
    background-size: 100px 100px;
}

.smart-contract-gen-section-header h2,
.smart-contract-gen-section-header p {
    color: #1f1d88;
}

.smart-contract-gen-section-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.smart-contract-gen-section-header-new h2 {
    font-size: 38px; /* Adjusted from possibly 48+ */
    line-height: 1.3;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.smart-contract-gen-section-header-new p {
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF; /* or use #0e736c for same tone */
    max-width: 700px;
    margin: 0 auto;
}

.smart-contract-gen-section-header-new .smart-contract-gen-divider {
    width: 60px;
    height: 3px;
    background-color: #0e736c;
    margin: 20px auto 0;
    border-radius: 4px;
}


.smart-contract-gen-process-header p {
    color: #FFFFFF;
}


.smart-contract-gen-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.smart-contract-gen-process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.smart-contract-gen-process-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.smart-contract-gen-step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: #1f1d88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.smart-contract-gen-process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.smart-contract-gen-process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Benefits Section */
.smart-contract-gen-benefits {
    padding: 6rem 5%;
    background: white;
}

.smart-contract-gen-benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.smart-contract-gen-benefit-card {
    background: #f9faff;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 29, 136, 0.1);
}

.smart-contract-gen-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(31, 29, 136, 0.1);
    border-color: rgba(31, 29, 136, 0.2);
}

.smart-contract-gen-benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1d88 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.smart-contract-gen-benefit-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.smart-contract-gen-benefit-card h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.smart-contract-gen-benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Tech Stack Section */
.smart-contract-gen-tech {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #e8f3fa 0%, #d5d5d5 100%);
}

.smart-contract-gen-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.smart-contract-gen-tech-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.smart-contract-gen-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.smart-contract-gen-tech-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-contract-gen-tech-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.smart-contract-gen-tech-card h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin-bottom: 0.5rem;
}

.smart-contract-gen-tech-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.smart-contract-gen-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #4f46e5 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.smart-contract-gen-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.smart-contract-gen-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.smart-contract-gen-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
	color: white;
}

.smart-contract-gen-cta-btn {
    background: white;
    color: #1f1d88;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.smart-contract-gen-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.smart-contract-gen-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"><circle cx="50" cy="50" r="40"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 1;
}

/* Animations */
@keyframes smart-contract-gen-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smart-contract-gen-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes smart-contract-gen-moveDots {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 10px);
    }
    50% {
        transform: translate(0, 20px);
    }
    75% {
        transform: translate(-10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .smart-contract-gen-hero {
        flex-direction: column;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .smart-contract-gen-hero-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .smart-contract-gen-about {
        flex-direction: column;
    }
    
    .smart-contract-gen-about-image {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .smart-contract-gen-hero h1 {
        font-size: 2.5rem;
    }
    
    .smart-contract-gen-section-header h2 {
        font-size: 2rem;
    }
    
    .smart-contract-gen-cta-buttons {
        flex-direction: column;
    }
}
.smart-contract-gen-solana-use-cases {
  padding: 5rem 2rem;
  background: linear-gradient(145deg, #e8f0ff, #fdfdff);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.smart-contract-gen-solana-use-cases h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.smart-contract-gen-solana-use-cases p {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.smart-contract-gen-solana-use-cases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.smart-contract-gen-solana-use-case {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.smart-contract-gen-solana-use-case::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #6366f1, #3b82f6);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.smart-contract-gen-solana-use-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.smart-contract-gen-solana-use-case h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f1d88;
  margin-bottom: 0.75rem;
}

.smart-contract-gen-solana-use-case p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .smart-contract-gen-solana-use-cases {
    padding: 3rem 1rem;
  }

  .smart-contract-gen-solana-use-case {
    padding: 1.5rem;
  }

  .smart-contract-gen-solana-use-case h3 {
    font-size: 1.15rem;
  }

  .smart-contract-gen-solana-use-case p {
    font-size: 0.95rem;
  }
}

/* NFT Smart Contract Development CSS */
.NFT-Smart-contract__hero {
  display: flex;
  min-height: 90vh;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
  position: relative;
  overflow: hidden;
}

.NFT-Smart-contract__hero-content {
  flex: 1;
  z-index: 2;
  max-width: 600px;
}

.NFT-Smart-contract__hero h1 {
  font-size: 3.5rem;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.NFT-Smart-contract__hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.NFT-Smart-contract__hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.NFT-Smart-contract__cta-primary {
  background: #1f1d88;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 29, 136, 0.2);
}

.NFT-Smart-contract__cta-primary:hover {
  background: #3a38a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 29, 136, 0.3);
}

.NFT-Smart-contract__cta-secondary {
  background: white;
  color: #1f1d88;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #1f1d88;
}

.NFT-Smart-contract__cta-secondary:hover {
  background: #f0f0ff;
  transform: translateY(-3px);
}

.NFT-Smart-contract__hero-visual {
  flex: 1;
  position: relative;
  height: 100%;
  min-height: 500px;
  z-index: 1;
}

.NFT-Smart-contract__hero-visual img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.NFT-Smart-contract__hero-pattern {
  position: absolute;
  width: 600px;
  height: 600px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="%231f1d88" fill-opacity="0.05"><circle cx="100" cy="100" r="10"/></svg>');
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  animation: rotate 60s linear infinite;
}

/* Features Section */
.NFT-Smart-contract__features {
  padding: 8rem 5%;
  background: white;
}

.NFT-Smart-contract__features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.NFT-Smart-contract__features-header h2 {
  color: #1f1d88;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.NFT-Smart-contract__features-subtitle {
  font-size: 1.2rem;
  color: #666;
}

.NFT-Smart-contract__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.NFT-Smart-contract__feature-card {
  background: #f9faff;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #e0e4ff;
  position: relative;
  overflow: hidden;
}

.NFT-Smart-contract__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(31, 29, 136, 0.1);
  border-color: #d0d4ff;
}

.NFT-Smart-contract__feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1f1d88 0%, #6a68d6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.NFT-Smart-contract__feature-card:hover::after {
  transform: scaleX(1);
}

.NFT-Smart-contract__feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.NFT-Smart-contract__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.NFT-Smart-contract__feature-card h3 {
  color: #1f1d88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.NFT-Smart-contract__feature-card p {
  color: #555;
  line-height: 1.6;
}

/* Process Section */
.NFT-Smart-contract__process {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.NFT-Smart-contract__process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.NFT-Smart-contract__process h2 {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.NFT-Smart-contract__process-subtitle {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #FFFFFF;
}

.NFT-Smart-contract__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.NFT-Smart-contract__process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.NFT-Smart-contract__process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.NFT-Smart-contract__step-number {
  width: 50px;
  height: 50px;
  background: white;
  color: #1f1d88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.NFT-Smart-contract__step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
    color: #FFFFFF;

}

.NFT-Smart-contract__step-content p {
  opacity: 0.9;
  line-height: 1.6;
    color: #FFFFFF;

}

.NFT-Smart-contract__process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.NFT-Smart-contract__process::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

/* Showcase Section */
.NFT-Smart-contract__showcase {
  padding: 8rem 5%;
  background: white;
}

.NFT-Smart-contract__showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.NFT-Smart-contract__showcase-header h2 {
  color: #1f1d88;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.NFT-Smart-contract__showcase-header p {
  font-size: 1.2rem;
  color: #666;
}

.NFT-Smart-contract__showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.NFT-Smart-contract__showcase-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.NFT-Smart-contract__showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.NFT-Smart-contract__showcase-image {
  height: 250px;
  overflow: hidden;
}

.NFT-Smart-contract__showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.NFT-Smart-contract__showcase-item:hover .NFT-Smart-contract__showcase-image img {
  transform: scale(1.05);
}

.NFT-Smart-contract__showcase-content {
  padding: 1.5rem;
  background: white;
}

.NFT-Smart-contract__showcase-content h3 {
  color: #1f1d88;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.NFT-Smart-contract__showcase-content p {
  color: #555;
  line-height: 1.6;
}

/* Benefits Section */
.NFT-Smart-contract__benefits {
  padding: 8rem 5%;
  background: #f9faff;
}

.NFT-Smart-contract__benefits-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.NFT-Smart-contract__benefits-content {
  flex: 1;
}

.NFT-Smart-contract__benefits-content h2 {
  color: #1f1d88;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.NFT-Smart-contract__benefits-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.NFT-Smart-contract__benefits-list {
  list-style: none;
  padding: 0;
}

.NFT-Smart-contract__benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.NFT-Smart-contract__benefit-icon {
  width: 30px;
  height: 30px;
  background: #1f1d88;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.NFT-Smart-contract__benefit-text h3 {
  color: #1f1d88;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.NFT-Smart-contract__benefit-text p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.NFT-Smart-contract__benefits-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.NFT-Smart-contract__benefits-visual img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(31, 29, 136, 0.1);
  position: relative;
  z-index: 2;
}

.NFT-Smart-contract__benefits-pattern {
  position: absolute;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="%231f1d88" fill-opacity="0.05"><circle cx="100" cy="100" r="10"/></svg>');
  right: -50px;
  top: -50px;
  z-index: 1;
  animation: rotate 60s linear infinite reverse;
}

/* CTA Section */
.NFT-Smart-contract__cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.NFT-Smart-contract__cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.NFT-Smart-contract__cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.NFT-Smart-contract__cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
}

.NFT-Smart-contract__cta-button {
  background: white;
  color: #1f1d88;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.NFT-Smart-contract__cta-button:hover {
  background: #f0f0ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.NFT-Smart-contract__cta-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="white" fill-opacity="0.05"><circle cx="100" cy="100" r="10"/></svg>');
  right: -50px;
  bottom: -50px;
  z-index: 1;
  animation: rotate 60s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .NFT-Smart-contract__hero {
    flex-direction: column;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .NFT-Smart-contract__hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .NFT-Smart-contract__hero-buttons {
    justify-content: center;
  }
  
  .NFT-Smart-contract__hero-visual {
    width: 100%;
  }
  
  .NFT-Smart-contract__benefits-container {
    flex-direction: column;
  }
  
  .NFT-Smart-contract__benefits-visual {
    order: -1;
    margin-bottom: 3rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .NFT-Smart-contract__hero h1 {
    font-size: 2.5rem;
  }
  
  .NFT-Smart-contract__hero-subtitle {
    font-size: 1.2rem;
  }
  
  .NFT-Smart-contract__features-header h2,
  .NFT-Smart-contract__process h2,
  .NFT-Smart-contract__showcase-header h2,
  .NFT-Smart-contract__benefits-content h2,
  .NFT-Smart-contract__cta h2 {
    font-size: 2rem;
  }
}

/* Base Styles */
.dapp-dev-gen-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    overflow: hidden;
}

.dapp-dev-gen-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.dapp-dev-gen-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.dapp-dev-gen-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.dapp-dev-gen-hero-graphics {
    position: absolute;
    right: 5%;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dapp-dev-gen-hero-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.dapp-dev-gen-particle-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%231f1d88" opacity="0.2"/></svg>');
    background-size: 20px 20px;
    animation: particleMove 100s linear infinite;
    opacity: 0.5;
}

.dapp-dev-gen-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #1f1d88;
    border-radius: 15px;
    animation: bounce 2s infinite;
}

.dapp-dev-gen-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #1f1d88;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

/* Intro Section */
.dapp-dev-gen-intro {
    padding: 8rem 5%;
    background: white;
}

.dapp-dev-gen-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.dapp-dev-gen-intro-text {
    flex: 1;
}

.dapp-dev-gen-intro h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
}

.dapp-dev-gen-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.dapp-dev-gen-stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.dapp-dev-gen-stat-item {
    text-align: center;
}

.dapp-dev-gen-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1d88;
    line-height: 1;
}

.dapp-dev-gen-stat-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dapp-dev-gen-intro-image {
    flex: 1;
    position: relative;
}

.dapp-dev-gen-intro-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.dapp-dev-gen-intro-image:hover .dapp-dev-gen-intro-img {
    transform: perspective(1000px) rotateY(0deg);
}

.dapp-dev-gen-eth-logo {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 784.37 1277.39"><path fill="%231f1d88" d="M392.07,0L383.5,29.72 383.5,873.74 392.07,882.29 784.13,650.54z"/><path fill="%231f1d88" d="M392.07,0L0,650.54 392.07,882.29 392.07,472.33z"/><path fill="%231f1d88" d="M392.07,956.52L387.24,962.41 387.24,1263.28 392.07,1277.38 784.37,724.89z"/><path fill="%231f1d88" d="M392.07,1277.38L392.07,956.52 0,724.89z"/><path fill="%231f1d88" d="M392.07,882.29L784.13,650.54 392.07,472.33z"/><path fill="%231f1d88" d="M0,650.54L392.07,882.29 392.07,472.33z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 5px 10px rgba(31, 29, 136, 0.2));
    animation: pulse 2s infinite;
}

/* Services Section */
.dapp-dev-gen-services {
    padding: 8rem 5%;
    background: linear-gradient(to bottom, #f9faff 0%, #ffffff 100%);
}

.dapp-dev-gen-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.dapp-dev-gen-section-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.dapp-dev-gen-section-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.dapp-dev-gen-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dapp-dev-gen-service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 29, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.dapp-dev-gen-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(31, 29, 136, 0.1), 0 10px 10px -5px rgba(31, 29, 136, 0.04);
    border-color: rgba(31, 29, 136, 0.2);
}

.dapp-dev-gen-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1f1d88 0%, #6d28d9 100%);
}

.dapp-dev-gen-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(31, 29, 136, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.dapp-dev-gen-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dapp-dev-gen-service-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.dapp-dev-gen-service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dapp-dev-gen-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dapp-dev-gen-service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.dapp-dev-gen-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1f1d88;
}

/* Process Section */
.dapp-dev-gen-process {
    padding: 8rem 5%;
    background: #1f1d88;
    color: white;
    position: relative;
    overflow: hidden;
}

.dapp-dev-gen-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
}

.dapp-dev-gen-section-header h2,
.dapp-dev-gen-section-header p {
    color: #1f1d88;
	
}

.dapp-dev-gen-section-header-new h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dapp-dev-gen-section-header-new p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
        text-align: center;

}
	
.dapp-dev-gen-process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.dapp-dev-gen-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.dapp-dev-gen-process-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
}

.dapp-dev-gen-process-number {
    width: 50px;
    height: 50px;
    background: white;
    color: #1f1d88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.dapp-dev-gen-process-content {
    flex: 1;
}

.dapp-dev-gen-process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.dapp-dev-gen-process-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Technologies Section */
.dapp-dev-gen-technologies {
    padding: 8rem 5%;
    background: white;
}

.dapp-dev-gen-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dapp-dev-gen-tech-category {
    background: #f9faff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.dapp-dev-gen-tech-category h3 {
    font-size: 1.25rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(31, 29, 136, 0.1);
}

.dapp-dev-gen-tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1.5rem;
}

.dapp-dev-gen-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.dapp-dev-gen-tech-item:hover {
    transform: translateY(-5px);
}

.dapp-dev-gen-tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: grayscale(100%) contrast(0.5);
    transition: filter 0.3s ease;
}

.dapp-dev-gen-tech-item:hover img {
    filter: grayscale(0%) contrast(1);
}

.dapp-dev-gen-tech-item span {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Case Studies Section */
.dapp-dev-gen-case-studies {
    padding: 8rem 5%;
    background: #f9faff;
}

.dapp-dev-gen-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dapp-dev-gen-case-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dapp-dev-gen-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(31, 29, 136, 0.1), 0 10px 10px -5px rgba(31, 29, 136, 0.04);
}

.dapp-dev-gen-case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dapp-dev-gen-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dapp-dev-gen-case-card:hover .dapp-dev-gen-case-image img {
    transform: scale(1.1);
}

.dapp-dev-gen-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.7) 0%, transparent 100%);
}

.dapp-dev-gen-case-content {
    padding: 2rem;
}

.dapp-dev-gen-case-content h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.dapp-dev-gen-case-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dapp-dev-gen-case-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(31, 29, 136, 0.1);
    padding-top: 1.5rem;
}

.dapp-dev-gen-case-stat {
    text-align: center;
}

.dapp-dev-gen-case-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1d88;
    line-height: 1;
}

.dapp-dev-gen-case-stat-label {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.dapp-dev-gen-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #6d28d9 100%);
    color: white;
}

.dapp-dev-gen-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.dapp-dev-gen-cta-content {
    flex: 1;
}

.dapp-dev-gen-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.dapp-dev-gen-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
	color: #FFFFFF;
}

.dapp-dev-gen-cta-buttons {
    display: flex;
    gap: 1rem;
}

.dapp-dev-gen-cta-button-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #1f1d88;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dapp-dev-gen-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dapp-dev-gen-cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dapp-dev-gen-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dapp-dev-gen-cta-graphic {
    flex: 1;
    position: relative;
}

.dapp-dev-gen-cta-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dapp-dev-gen-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.2"/></svg>');
    background-size: 20px 20px;
    animation: particleMove 100s linear infinite;
    opacity: 0.3;
}

/* FAQ Section */
.dapp-dev-gen-faq {
    padding: 8rem 5%;
    background: white;
}

.dapp-dev-gen-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.dapp-dev-gen-faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.dapp-dev-gen-faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #f9faff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f1d88;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dapp-dev-gen-faq-question:hover {
    background: #f0f4ff;
}

.dapp-dev-gen-faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.dapp-dev-gen-faq-item.active .dapp-dev-gen-faq-icon {
    transform: rotate(180deg);
}

.dapp-dev-gen-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dapp-dev-gen-faq-item.active .dapp-dev-gen-faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.dapp-dev-gen-faq-answer p {
    color: #4a5568;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes particleMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-30px) translateX(-50%);
    }
    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes scrollIndicator {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .dapp-dev-gen-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .dapp-dev-gen-hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .dapp-dev-gen-hero-graphics {
        position: relative;
        right: auto;
        width: 100%;
        height: auto;
    }
    
    .dapp-dev-gen-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .dapp-dev-gen-cta-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .dapp-dev-gen-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dapp-dev-gen-hero h1 {
        font-size: 2.5rem;
    }
    
    .dapp-dev-gen-services-grid {
        grid-template-columns: 1fr;
    }
    
    .dapp-dev-gen-case-grid {
        grid-template-columns: 1fr;
    }
    
    .dapp-dev-gen-stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .dapp-dev-gen-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dapp-dev-gen-hero h1 {
        font-size: 2rem;
    }
    
    .dapp-dev-gen-section-header h2 {
        font-size: 1.8rem;
    }
    
    .dapp-dev-gen-cta-buttons {
        flex-direction: column;
    }
    
    .dapp-dev-gen-process-timeline {
        padding-left: 30px;
    }
    
    .dapp-dev-gen-process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }
}

.dapp-dev-gen-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.dapp-dev-gen-faq-icon {
    width: 16px;
    height: 16px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dapp-dev-gen-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    padding: 1em;
    font-size: 1rem;
    text-align: left;
}
/* NFT dApp Development Services CSS */
.NFT-dApp-gen-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    position: relative;
    overflow: hidden;
}

.NFT-dApp-gen-hero-content {
    max-width: 600px;
    z-index: 2;
}

.NFT-dApp-gen-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1f1d88;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.NFT-dApp-gen-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.NFT-dApp-gen-hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.NFT-dApp-gen-primary-btn {
    background: #605df8;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 29, 136, 0.2);
}

.NFT-dApp-gen-primary-btn:hover {
    background: #3a38a8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 29, 136, 0.3);
}

.NFT-dApp-gen-secondary-btn {
    background: white;
    color: #1f1d88;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.NFT-dApp-gen-secondary-btn:hover {
    background: #f0f0ff;
    transform: translateY(-3px);
}

.NFT-dApp-gen-hero-image {
    position: relative;
    width: 50%;
    animation: fadeInRight 1s ease-out;
}

.NFT-dApp-gen-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.NFT-dApp-gen-hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.NFT-dApp-gen-hero-particles {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.NFT-dApp-gen-features {
    padding: 100px 5%;
    background: white;
}

.NFT-dApp-gen-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.NFT-dApp-gen-section-subtitle {
    display: inline-block;
    color: #1f1d88;
    background: rgba(31, 29, 136, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.NFT-dApp-gen-section-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 20px;
}

.NFT-dApp-gen-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.NFT-dApp-gen-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.NFT-dApp-gen-feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 29, 136, 0.03) 0%, rgba(31, 29, 136, 0) 100%);
    z-index: -1;
}

.NFT-dApp-gen-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.NFT-dApp-gen-feature-highlight {
    border: 2px solid #1f1d88;
}

.NFT-dApp-gen-feature-highlight:before {
    background: linear-gradient(135deg, rgba(31, 29, 136, 0.05) 0%, rgba(31, 29, 136, 0.01) 100%);
}

.NFT-dApp-gen-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}

.NFT-dApp-gen-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.NFT-dApp-gen-feature-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.NFT-dApp-gen-feature-card p {
    color: #666;
    line-height: 1.6;
}

.NFT-dApp-gen-feature-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #1f1d88;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 120px;
    text-align: center;
}

.NFT-dApp-gen-services {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.NFT-dApp-gen-services .NFT-dApp-gen-section-header h2 {
    color: white;
}

.NFT-dApp-gen-service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.NFT-dApp-gen-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.NFT-dApp-gen-tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.NFT-dApp-gen-tab-btn.active {
    background: white;
    color: #1f1d88;
}

.NFT-dApp-gen-service-content {
    display: none;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.NFT-dApp-gen-service-content.active {
    display: flex;
    animation: fadeIn 0.8s ease-out;
}

.NFT-dApp-gen-service-text {
    flex: 1;
}

.NFT-dApp-gen-service-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.NFT-dApp-gen-service-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #FFFFFF;
}

.NFT-dApp-gen-service-list {
    margin-bottom: 30px;
    columns: 2;
    column-gap: 30px;
}

.NFT-dApp-gen-service-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    break-inside: avoid;
}

.NFT-dApp-gen-service-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.NFT-dApp-gen-service-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.NFT-dApp-gen-service-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.NFT-dApp-gen-service-image:hover img {
    transform: scale(1.05);
}

.NFT-dApp-gen-service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 29, 136, 0.4) 0%, rgba(31, 29, 136, 0.1) 100%);
}

.NFT-dApp-gen-process {
    padding: 100px 5%;
    background: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.NFT-dApp-gen-process-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/light-honeycomb.png');
    opacity: 0.05;
    z-index: 0;
}

.NFT-dApp-gen-process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.NFT-dApp-gen-process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-bottom: 40px;
}

.NFT-dApp-gen-step-number {
    width: 60px;
    height: 60px;
    background: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.NFT-dApp-gen-step-connector {
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: #1f1d88;
    opacity: 0.2;
    z-index: 1;
}

.NFT-dApp-gen-process-step:last-child .NFT-dApp-gen-step-connector {
    display: none;
}

.NFT-dApp-gen-process-step h3 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.NFT-dApp-gen-process-step p {
    color: #666;
    line-height: 1.6;
}

.NFT-dApp-gen-technologies {
    padding: 100px 5%;
    background: white;
}

.NFT-dApp-gen-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.NFT-dApp-gen-tech-card {
    background: #f0f1f2;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.NFT-dApp-gen-tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.NFT-dApp-gen-tech-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.NFT-dApp-gen-tech-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) contrast(0.5);
    transition: all 0.3s ease;
}

.NFT-dApp-gen-tech-card:hover .NFT-dApp-gen-tech-logo img {
    filter: none;
}

.NFT-dApp-gen-tech-card h3 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.NFT-dApp-gen-tech-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.NFT-dApp-gen-showcase {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}

.NFT-dApp-gen-showcase-slider {
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.NFT-dApp-gen-showcase-item {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.NFT-dApp-gen-showcase-image {
    flex: 1;
    min-height: 400px;
}

.NFT-dApp-gen-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.NFT-dApp-gen-showcase-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.NFT-dApp-gen-showcase-content h3 {
    color: #1f1d88;
    font-size: 2rem;
    margin-bottom: 10px;
}

.NFT-dApp-gen-showcase-category {
    color: #1f1d88;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.7;
}

.NFT-dApp-gen-showcase-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.NFT-dApp-gen-showcase-stats {
    display: flex;
    gap: 30px;
}

.NFT-dApp-gen-showcase-stat {
    text-align: center;
}

.NFT-dApp-gen-showcase-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f1d88;
    margin-bottom: 5px;
}

.NFT-dApp-gen-showcase-stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.NFT-dApp-gen-showcase-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.NFT-dApp-gen-showcase-prev,
.NFT-dApp-gen-showcase-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #1f1d88;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.NFT-dApp-gen-showcase-prev:hover,
.NFT-dApp-gen-showcase-next:hover {
    background: #1f1d88;
    color: white;
}

.NFT-dApp-gen-cta {
    padding: 100px 5%;
    background: #1f1d88;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.NFT-dApp-gen-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.NFT-dApp-gen-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.NFT-dApp-gen-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.NFT-dApp-gen-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
    opacity: 0.05;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .NFT-dApp-gen-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .NFT-dApp-gen-hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .NFT-dApp-gen-hero-buttons {
        justify-content: center;
    }
    
    .NFT-dApp-gen-hero-image {
        width: 80%;
    }
    
    .NFT-dApp-gen-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .NFT-dApp-gen-service-content {
        flex-direction: column;
    }
    
    .NFT-dApp-gen-service-list {
        columns: 1;
    }
    
    .NFT-dApp-gen-showcase-item {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .NFT-dApp-gen-hero h1 {
        font-size: 2.5rem;
    }
    
    .NFT-dApp-gen-features-grid {
        grid-template-columns: 1fr;
    }
    
    .NFT-dApp-gen-process-step {
        min-width: 100%;
    }
    
    .NFT-dApp-gen-step-connector {
        display: none;
    }
    
    .NFT-dApp-gen-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Container general resets */
.NFT-dApp-gen-benefits,
.NFT-dApp-gen-usecases {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 3.5rem 2rem;
  position: relative;
}

/* --- Section 1: Why Build a Decentralized Social Network? --- */
.NFT-dApp-gen-benefits {
  background: #f9f9fc;
  border-radius: 22px;
  box-shadow: 0 15px 50px rgba(31, 29, 136, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 4rem 3rem;
  position: relative;
}

.NFT-dApp-gen-benefits-bg {
  position: absolute;
  top: -60px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #1f1d88 0%, transparent 70%);
  filter: blur(85px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.NFT-dApp-gen-benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
  z-index: 1;
}

.NFT-dApp-gen-benefits-text {
  flex: 1 1 380px;
  color: #1f1d88;
}

.NFT-dApp-gen-benefits-text h2 {
  font-size: 2.9rem;
  font-weight: 900;
  margin-bottom: 1.4rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(205 205 231 / 30%);
  color: #1f1d88;
}

.NFT-dApp-gen-benefits-list {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.7;
  color: #3a3a5a;
}

.NFT-dApp-gen-benefits-list li {
  margin-bottom: 1.15rem;
  position: relative;
  padding-left: 1.7rem;
  cursor: default;
  transition: color 0.3s ease;
}

.NFT-dApp-gen-benefits-list li strong {
  color: #1f1d88;
  font-weight: 900;
  margin-right: 6px;
}

/* Custom bullet dots */
.NFT-dApp-gen-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background: #1f1d88;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Visual image container */
.NFT-dApp-gen-benefits-visual {
  flex: 1 1 380px;
  max-width: 460px;
  height: 420px;
  box-shadow: 0 15px 40px rgba(31, 29, 136, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.NFT-dApp-gen-benefits-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.NFT-dApp-gen-benefits-visual:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 25px 70px rgba(31, 29, 136, 0.25);
}

/* --- Section 2: Social dApp Use Cases --- */

.NFT-dApp-gen-usecases {
  padding-top: 0;
}

.NFT-dApp-gen-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.NFT-dApp-gen-section-subtitle {
  color: #5551d5;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.NFT-dApp-gen-usecases h2 {
  color: #1f1d88;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(205 205 231 / 30%);
}

/* Grid container for usecase cards */
.NFT-dApp-gen-usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.8rem;
  padding: 0 1rem;
}

/* Each use case card */
.NFT-dApp-gen-usecase-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 18px 40px rgba(31, 29, 136, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  text-align: center;
  user-select: none;
}

.NFT-dApp-gen-usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(31, 29, 136, 0.25);
}

.NFT-dApp-gen-usecase-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 2px 2px rgba(31, 29, 136, 0.2));
  transition: filter 0.3s ease;
}

.NFT-dApp-gen-usecase-card:hover img {
  filter: drop-shadow(0 4px 6px rgba(31, 29, 136, 0.45));
}

.NFT-dApp-gen-usecase-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1f1d88;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.NFT-dApp-gen-usecase-card p {
  color: #4b4b7a;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .NFT-dApp-gen-benefits-wrapper {
    flex-direction: column;
  }
  .NFT-dApp-gen-benefits-visual,
  .NFT-dApp-gen-benefits-text {
    max-width: 100%;
  }
  .NFT-dApp-gen-usecases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Cross Chain DApp Solutions CSS */
.cross-chain-dapp-hero {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.cross-chain-dapp-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cross-chain-dapp-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1f1d88;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.cross-chain-dapp-subtitle {
    font-size: 1.5rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.cross-chain-dapp-hero-animation {
    position: relative;
    height: 400px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.cross-chain-dapp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cross-chain-dapp-chain-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 Q25,20 50,50 T100,50" fill="none" stroke="rgba(31,29,136,0.3)" stroke-width="1"/></svg>');
    background-size: 100% 100%;
    animation: chainLinks 20s linear infinite;
}

.cross-chain-dapp-cta-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(31,29,136,0.3);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.cross-chain-dapp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31,29,136,0.4);
    background: #2a27b3;
}

/* Intro Section */
.cross-chain-dapp-intro {
    padding: 100px 0;
    background-color: white;
}

.cross-chain-dapp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cross-chain-dapp-intro-text {
    flex: 1;
}

.cross-chain-dapp-intro h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 20px;
}

.cross-chain-dapp-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.cross-chain-dapp-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.cross-chain-dapp-stat-item {
    text-align: center;
}

.cross-chain-dapp-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f1d88;
    display: block;
    line-height: 1;
}

.cross-chain-dapp-stat-label {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.cross-chain-dapp-intro-visual {
    flex: 1;
    position: relative;
}

.cross-chain-dapp-intro-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.cross-chain-dapp-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%231f1d88" opacity="0.2"/></svg>');
    background-size: 20px 20px;
    bottom: -30px;
    right: -30px;
    z-index: 1;
    animation: patternMove 20s linear infinite;
}

/* Features Section */
/* Features Section - Redesigned */
.cross-chain-dapp-features {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cross-chain-dapp-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%231f1d88" opacity="0.05"/></svg>');
    background-size: 40px 40px;
    z-index: 0;
}

.cross-chain-dapp-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cross-chain-dapp-features h2 {
    font-size: 2.2rem;
    color: #1f1d88;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.cross-chain-dapp-features h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1f1d88;
    border-radius: 3px;
}

.cross-chain-dapp-section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cross-chain-dapp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.cross-chain-dapp-feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(31, 29, 136, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 29, 136, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cross-chain-dapp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 29, 136, 0.15);
    border-color: rgba(31, 29, 136, 0.1);
}

.cross-chain-dapp-feature-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cross-chain-dapp-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(31, 29, 136, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cross-chain-dapp-feature-card:hover .cross-chain-dapp-feature-icon {
    background: rgba(31, 29, 136, 0.15);
    transform: rotate(5deg) scale(1.05);
}

.cross-chain-dapp-feature-icon svg {
    width: 24px;
    height: 24px;
}

.cross-chain-dapp-feature-card h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin-bottom: 15px;
    font-weight: 600;
}

.cross-chain-dapp-feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cross-chain-dapp-feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cross-chain-dapp-feature-list li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
}

.cross-chain-dapp-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1f1d88;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.cross-chain-dapp-feature-card:hover .cross-chain-dapp-feature-list li::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .cross-chain-dapp-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .cross-chain-dapp-features {
        padding: 60px 0;
    }
    
    .cross-chain-dapp-features h2 {
        font-size: 1.8rem;
    }
    
    .cross-chain-dapp-section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cross-chain-dapp-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cross-chain-dapp-feature-card {
        padding: 20px;
    }
}

/* Workflow Section */
.cross-chain-dapp-workflow {
    padding: 100px 0;
    background-color: white;
}

.cross-chain-dapp-workflow h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.cross-chain-dapp-steps {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.cross-chain-dapp-steps:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(31,29,136,0.1);
}

.cross-chain-dapp-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.cross-chain-dapp-step-number {
    width: 60px;
    height: 60px;
    background: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.cross-chain-dapp-step-content {
    padding-top: 10px;
}

.cross-chain-dapp-step-content h3 {
    font-size: 1.4rem;
    color: #1f1d88;
    margin-bottom: 10px;
}

.cross-chain-dapp-step-content p {
    color: #666;
    line-height: 1.6;
}

.cross-chain-dapp-workflow-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cross-chain-dapp-workflow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cross-chain-dapp-workflow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
    animation: diagonalScan 10s linear infinite;
}

/* Benefits Section */
.cross-chain-dapp-benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9faff 100%);
}

.cross-chain-dapp-benefits .cross-chain-dapp-container {
    flex-direction: row-reverse;
    gap: 60px;
}

.cross-chain-dapp-benefits h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 30px;
}

.cross-chain-dapp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cross-chain-dapp-benefit-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.cross-chain-dapp-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cross-chain-dapp-benefit-item h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin-bottom: 10px;
}

.cross-chain-dapp-benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cross-chain-dapp-benefits-visual {
    flex: 1;
    position: relative;
}

.cross-chain-dapp-benefits-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.cross-chain-dapp-benefits-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="45" y="0" width="10" height="10" fill="%231f1d88" opacity="0.1"/></svg>');
    background-size: 20px 20px;
    top: -30px;
    left: -30px;
    z-index: 1;
    animation: patternMove 20s linear infinite reverse;
}

/* Integrations Section */
.cross-chain-dapp-integrations {
    padding: 100px 0;
    background-color: white;
}

.cross-chain-dapp-integrations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.cross-chain-dapp-integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
}

.cross-chain-dapp-integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(31,29,136,0.03);
}

.cross-chain-dapp-integration-item:hover {
    transform: translateY(-5px);
    background: rgba(31,29,136,0.08);
}

.cross-chain-dapp-integration-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%) contrast(0.5);
    transition: all 0.3s ease;
}

.cross-chain-dapp-integration-item:hover img {
    filter: none;
}

.cross-chain-dapp-integration-item span {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    font-weight: 500;
}

.cross-chain-dapp-integrations-cta {
    text-align: center;
    margin-top: 50px;
}

.cross-chain-dapp-integrations-cta p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Use Cases Section */
.cross-chain-dapp-use-cases {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9faff 0%, #ffffff 100%);
}

.cross-chain-dapp-use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.cross-chain-dapp-tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.cross-chain-dapp-tab-button {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cross-chain-dapp-tab-button:hover {
    color: #1f1d88;
    background: rgba(31,29,136,0.1);
}

.cross-chain-dapp-tab-button.active {
    background: #1f1d88;
    color: white;
}

.cross-chain-dapp-tab-content {
    display: none;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cross-chain-dapp-tab-content.active {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

.cross-chain-dapp-tab-content-text {
    flex: 1;
    padding: 40px;
}

.cross-chain-dapp-tab-content-text h3 {
    font-size: 1.8rem;
    color: #1f1d88;
    margin-bottom: 20px;
}

.cross-chain-dapp-tab-content-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cross-chain-dapp-tab-content-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cross-chain-dapp-tab-content-text li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.cross-chain-dapp-tab-content-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1f1d88;
    font-weight: bold;
}

.cross-chain-dapp-tab-content-visual {
    flex: 1;
    position: relative;
}

.cross-chain-dapp-tab-content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cross-chain-dapp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3a37c9 100%);
    color: white;
}

.cross-chain-dapp-cta .cross-chain-dapp-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cross-chain-dapp-cta-content {
    flex: 1;
}

.cross-chain-dapp-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cross-chain-dapp-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.cross-chain-dapp-cta-buttons {
    display: flex;
    gap: 20px;
}

.cross-chain-dapp-cta-button-primary {
    display: inline-block;
    background: white;
    color: #1f1d88;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cross-chain-dapp-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cross-chain-dapp-cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.cross-chain-dapp-cta-button-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.cross-chain-dapp-cta-visual {
    flex: 1;
    position: relative;
}

.cross-chain-dapp-cta-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cross-chain-dapp-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.2"/></svg>');
    background-size: 30px 30px;
    animation: particleMove 20s linear infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chainLinks {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes diagonalScan {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes particleMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .cross-chain-dapp-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .cross-chain-dapp-benefits .cross-chain-dapp-container {
        flex-direction: column;
    }
    
    .cross-chain-dapp-tab-content {
        flex-direction: column;
    }
    
    .cross-chain-dapp-cta .cross-chain-dapp-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cross-chain-dapp-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cross-chain-dapp-hero h1 {
        font-size: 2.5rem;
    }
    
    .cross-chain-dapp-subtitle {
        font-size: 1.2rem;
    }
    
    .cross-chain-dapp-hero-animation {
        height: 300px;
    }
    
    .cross-chain-dapp-steps:before {
        left: 25px;
    }
    
    .cross-chain-dapp-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .cross-chain-dapp-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cross-chain-dapp-tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cross-chain-dapp-tab-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cross-chain-dapp-hero h1 {
        font-size: 2rem;
    }
    
    .cross-chain-dapp-subtitle {
        font-size: 1rem;
    }
    
    .cross-chain-dapp-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cross-chain-dapp-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cross-chain-dapp-cta-button,
    .cross-chain-dapp-cta-button-primary,
    .cross-chain-dapp-cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}

.cross-chain-dapp-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
  }

  .cross-chain-dapp-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a73e8; /* a bright blue */
  }

  .cross-chain-dapp-intro-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #444;
  }

  .cross-chain-dapp-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .cross-chain-dapp-stat-item {
    background: #f0f4ff;
    border-radius: 12px;
    padding: 25px 30px;
    width: 200px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.15);
    transition: transform 0.3s ease;
    cursor: default;
  }

  .cross-chain-dapp-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 25px rgba(26, 115, 232, 0.3);
  }

  .cross-chain-dapp-stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
  }

  .cross-chain-dapp-stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .cross-chain-dapp-stats {
      gap: 30px;
    }

    .cross-chain-dapp-stat-item {
      width: 140px;
      padding: 20px 15px;
    }

    .cross-chain-dapp-stat-number {
      font-size: 2.4rem;
    }

    .cross-chain-dapp-intro-text h2 {
      font-size: 2rem;
    }

    .cross-chain-dapp-intro-text p {
      font-size: 1rem;
    }
  }

  /* Hero Section */
.layer2-dapp-gen-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    position: relative;
    overflow: hidden;
}

.layer2-dapp-gen-hero-content {
    max-width: 600px;
    z-index: 2;
}

.layer2-dapp-gen-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.layer2-dapp-gen-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.layer2-dapp-gen-hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.layer2-dapp-gen-primary-btn {
    background: #1f1d88;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 29, 136, 0.2);
}

.layer2-dapp-gen-primary-btn:hover {
    background: #3a38a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 29, 136, 0.3);
}

.layer2-dapp-gen-secondary-btn {
    border: 2px solid #1f1d88;
    color: #1f1d88;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.layer2-dapp-gen-secondary-btn:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-2px);
}

.layer2-dapp-gen-hero-visual {
    position: relative;
    width: 50%;
    max-width: 600px;
    animation: fadeInRight 0.8s ease-out;
}

.layer2-dapp-gen-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.layer2-dapp-gen-hero-visual:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.layer2-dapp-gen-particles {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(31, 29, 136, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    animation: particleMove 20s linear infinite;
}

/* Why Section */
.layer2-dapp-gen-why {
    padding: 6rem 5%;
    background: white;
}

.layer2-dapp-gen-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.layer2-dapp-gen-section-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.layer2-dapp-gen-section-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.layer2-dapp-gen-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.layer2-dapp-gen-why-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.layer2-dapp-gen-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.layer2-dapp-gen-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1f1d88, #6a67d3);
    z-index: 2;
}

.layer2-dapp-gen-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(31, 29, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.layer2-dapp-gen-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.layer2-dapp-gen-why-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.layer2-dapp-gen-why-card p {
    color: #666;
    line-height: 1.6;
}

.layer2-dapp-gen-featured {
    border: 2px solid #1f1d88;
    transform: scale(1.05);
}

.layer2-dapp-gen-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.layer2-dapp-gen-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #1f1d88;
    color: white;
    padding: 0.3rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

/* Solutions Section */
.layer2-dapp-gen-solutions {
    padding: 6rem 5%;
    position: relative;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
    overflow: hidden;
}

.layer2-dapp-gen-solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 1;
}

.layer2-dapp-gen-solutions-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.layer2-dapp-gen-section-header h2 {
    color: #1f1d88;
}


.layer2-dapp-gen-section-intro {
    color: #1f1d88;
}

.layer2-dapp-gen-section-header-new h2 {
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    padding-bottom: 40px;

}

.layer2-dapp-gen-solutions-tabs {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.layer2-dapp-gen-tab-header {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.layer2-dapp-gen-tab-btn {
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.layer2-dapp-gen-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1f1d88;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.layer2-dapp-gen-tab-btn:hover {
    color: #1f1d88;
}

.layer2-dapp-gen-tab-btn.active {
    color: #1f1d88;
}

.layer2-dapp-gen-tab-btn.active::after {
    transform: scaleX(1);
}

.layer2-dapp-gen-tab-content {
    display: none;
    padding: 3rem;
}

.layer2-dapp-gen-tab-content.active {
    display: flex;
    gap: 3rem;
    animation: fadeIn 0.5s ease-out;
}

.layer2-dapp-gen-tab-visual {
    flex: 1;
    min-width: 300px;
}

.layer2-dapp-gen-tab-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.layer2-dapp-gen-tab-details {
    flex: 1;
}

.layer2-dapp-gen-tab-details h3 {
    font-size: 1.8rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
}

.layer2-dapp-gen-tab-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.layer2-dapp-gen-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.layer2-dapp-gen-feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.layer2-dapp-gen-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #1f1d88;
    border-radius: 50%;
}

/* Process Section */
.layer2-dapp-gen-process {
    padding: 6rem 5%;
    background: #f9faff;
}

.layer2-dapp-gen-process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.layer2-dapp-gen-process-line {
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1f1d88, #6a67d3);
    z-index: 1;
}

.layer2-dapp-gen-process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.layer2-dapp-gen-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid #1f1d88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1d88;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(31, 29, 136, 0.2);
}

.layer2-dapp-gen-step-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.layer2-dapp-gen-process-step:nth-child(1) .layer2-dapp-gen-step-content {
    animation-delay: 0.1s;
}

.layer2-dapp-gen-process-step:nth-child(2) .layer2-dapp-gen-step-content {
    animation-delay: 0.3s;
}

.layer2-dapp-gen-process-step:nth-child(3) .layer2-dapp-gen-step-content {
    animation-delay: 0.5s;
}

.layer2-dapp-gen-process-step:nth-child(4) .layer2-dapp-gen-step-content {
    animation-delay: 0.7s;
}

.layer2-dapp-gen-process-step:nth-child(5) .layer2-dapp-gen-step-content {
    animation-delay: 0.9s;
}

.layer2-dapp-gen-process-step:nth-child(6) .layer2-dapp-gen-step-content {
    animation-delay: 1.1s;
}

.layer2-dapp-gen-step-content h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.layer2-dapp-gen-step-content p {
    color: #666;
    line-height: 1.6;
}

/* Case Studies Section */
.layer2-dapp-gen-case-studies {
    padding: 6rem 5%;
    background: white;
}

.layer2-dapp-gen-case-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.layer2-dapp-gen-case-card {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.layer2-dapp-gen-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.layer2-dapp-gen-case-card-alt {
    flex-direction: column-reverse;
}

.layer2-dapp-gen-case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.layer2-dapp-gen-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.layer2-dapp-gen-case-card:hover .layer2-dapp-gen-case-image img {
    transform: scale(1.05);
}

.layer2-dapp-gen-case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.8), transparent);
    color: white;
}

.layer2-dapp-gen-case-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.layer2-dapp-gen-case-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.layer2-dapp-gen-case-details {
    padding: 2rem;
    background: white;
}

.layer2-dapp-gen-case-details h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.layer2-dapp-gen-case-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.layer2-dapp-gen-case-stats {
    display: flex;
    gap: 2rem;
}

.layer2-dapp-gen-stat {
    text-align: center;
}

.layer2-dapp-gen-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f1d88;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.layer2-dapp-gen-stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Tech Section */
.layer2-dapp-gen-tech {
    padding: 6rem 5%;
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    overflow: hidden;
}

.layer2-dapp-gen-tech-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #81fdd4;
    opacity: 0.1;
    z-index: 1;
}

.layer2-dapp-gen-tech-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.layer2-dapp-gen-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.layer2-dapp-gen-tech-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.layer2-dapp-gen-tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.layer2-dapp-gen-tech-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(31, 29, 136, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.layer2-dapp-gen-tech-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.layer2-dapp-gen-tech-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.layer2-dapp-gen-tech-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.layer2-dapp-gen-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.layer2-dapp-gen-cta-content {
    max-width: 600px;
    z-index: 2;
}

.layer2-dapp-gen-cta h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.layer2-dapp-gen-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #ffffff;
}

.layer2-dapp-gen-cta-btn {
    background: white;
    color: #1f1d88;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.layer2-dapp-gen-cta-btn:hover {
    background: #f0f0ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.layer2-dapp-gen-cta-visual {
    position: relative;
    width: 50%;
    max-width: 500px;
}

.layer2-dapp-gen-cta-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.layer2-dapp-gen-cta-particles {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    animation: particleMove 20s linear infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes particleMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .layer2-dapp-gen-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .layer2-dapp-gen-hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .layer2-dapp-gen-hero-buttons {
        justify-content: center;
    }
    
    .layer2-dapp-gen-hero-visual {
        width: 100%;
    }
    
    .layer2-dapp-gen-tab-content.active {
        flex-direction: column;
    }
    
    .layer2-dapp-gen-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .layer2-dapp-gen-cta-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .layer2-dapp-gen-cta-visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .layer2-dapp-gen-hero h1 {
        font-size: 2.5rem;
    }
    
    .layer2-dapp-gen-section-header h2 {
        font-size: 2rem;
    }
    
    .layer2-dapp-gen-case-grid {
        grid-template-columns: 1fr;
    }
    
    .layer2-dapp-gen-process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .layer2-dapp-gen-process-line {
        display: none;
    }
    
    .layer2-dapp-gen-step-number {
        margin-bottom: 1rem;
    }
}

/* Hero Section */
.DAO-Dev-gen-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5% 100px;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  position: relative;
  overflow: hidden;
}

.DAO-Dev-gen-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(31,29,136,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.DAO-Dev-gen-hero-content {
  max-width: 600px;
  z-index: 2;
}

.DAO-Dev-gen-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f1d88;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.DAO-Dev-gen-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.DAO-Dev-gen-cta-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.DAO-Dev-gen-primary-btn {
  background: #1f1d88;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31,29,136,0.2);
}

.DAO-Dev-gen-primary-btn:hover {
  background: #3a38a8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31,29,136,0.3);
}

.DAO-Dev-gen-secondary-btn {
  border: 2px solid #1f1d88;
  color: #1f1d88;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.DAO-Dev-gen-secondary-btn:hover {
  background: #1f1d88;
  color: white;
  transform: translateY(-3px);
}

.DAO-Dev-gen-hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease-out;
}

.DAO-Dev-gen-hero-img {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(31,29,136,0.25);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
}

.DAO-Dev-gen-hero-img:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.DAO-Dev-gen-particles {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, #1f1d88 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

/* What is DAO Section */
.DAO-Dev-gen-what-is {
  padding: 120px 5%;
  background-color: white;
  position: relative;
}

.DAO-Dev-gen-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.DAO-Dev-gen-text-content {
  flex: 1;
}

.DAO-Dev-gen-what-is h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 24px;
}

.DAO-Dev-gen-what-is h2 span {
  background: linear-gradient(90deg, #1f1d88 0%, #4a48d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.DAO-Dev-gen-what-is p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.DAO-Dev-gen-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.DAO-Dev-gen-stat-item {
  text-align: center;
}

.DAO-Dev-gen-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1d88;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #1f1d88 0%, #4a48d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.DAO-Dev-gen-stat-label {
  font-size: 0.9rem;
  color: #777;
}

.DAO-Dev-gen-visual {
  flex: 1;
  position: relative;
}

.DAO-Dev-gen-visual-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(31,29,136,0.15);
  transition: transform 0.5s ease;
}

.DAO-Dev-gen-visual-img:hover {
  transform: scale(1.02);
}

.DAO-Dev-gen-connection-dots {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #1f1d88 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

/* Features Section */
.DAO-Dev-gen-features {
  padding: 120px 5%;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.DAO-Dev-gen-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.DAO-Dev-gen-section-header h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 20px;
}

.DAO-Dev-gen-section-header h2 span {
  background: linear-gradient(90deg, #1f1d88 0%, #4a48d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.DAO-Dev-gen-section-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.DAO-Dev-gen-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.DAO-Dev-gen-feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(31,29,136,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.DAO-Dev-gen-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31,29,136,0.03) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
}

.DAO-Dev-gen-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31,29,136,0.1);
}

.DAO-Dev-gen-feature-highlight {
  border: 2px solid rgba(31,29,136,0.2);
  position: relative;
}

.DAO-Dev-gen-highlight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1f1d88;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.DAO-Dev-gen-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f2ff 0%, #e0e5ff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.DAO-Dev-gen-feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.DAO-Dev-gen-feature-card h3 {
  font-size: 1.5rem;
  color: #1f1d88;
  margin-bottom: 15px;
}

.DAO-Dev-gen-feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.DAO-Dev-gen-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.DAO-Dev-gen-feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

.DAO-Dev-gen-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1f1d88;
  font-weight: bold;
}

/* Process Section */
.DAO-Dev-gen-process {
  padding: 120px 5%;
  background-color: white;
}

.DAO-Dev-gen-process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.DAO-Dev-gen-process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1f1d88, #4a48d6);
  z-index: 1;
}

.DAO-Dev-gen-process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.DAO-Dev-gen-process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.DAO-Dev-gen-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1f1d88 0%, #4a48d6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(31,29,136,0.2);
}

.DAO-Dev-gen-step-content {
  padding-top: 15px;
}

.DAO-Dev-gen-step-content h3 {
  font-size: 1.5rem;
  color: #1f1d88;
  margin-bottom: 10px;
}

.DAO-Dev-gen-step-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Use Cases Section */
.DAO-Dev-gen-use-cases {
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}

.DAO-Dev-gen-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.DAO-Dev-gen-use-case-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(31,29,136,0.05);
}

.DAO-Dev-gen-use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31,29,136,0.1);
}

.DAO-Dev-gen-use-case-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f2ff 0%, #e0e5ff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.DAO-Dev-gen-use-case-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.DAO-Dev-gen-use-case-card h3 {
  font-size: 1.3rem;
  color: #1f1d88;
  margin-bottom: 15px;
}

.DAO-Dev-gen-use-case-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Why Us Section */
.DAO-Dev-gen-why-us {
  padding: 120px 5%;
  background-color: white;
}

.DAO-Dev-gen-advantages {
  margin-top: 50px;
}

.DAO-Dev-gen-advantage {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.DAO-Dev-gen-advantage:hover {
  background: rgba(31,29,136,0.03);
  transform: translateX(10px);
}

.DAO-Dev-gen-advantage-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1f1d88 0%, #4a48d6 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.DAO-Dev-gen-advantage-content h3 {
  font-size: 1.3rem;
  color: #1f1d88;
  margin-bottom: 10px;
}

.DAO-Dev-gen-advantage-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.DAO-Dev-gen-globe-animation {
  position: relative;
  width: 100%;
  height: 400px;
}

.DAO-Dev-gen-globe-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.DAO-Dev-gen-connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%231f1d88" opacity="0.1"/></svg>');
  background-size: 20px 20px;
  z-index: -1;
}

/* Tech Stack Section */
.DAO-Dev-gen-tech-stack {
  padding: 120px 5%;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
}

.DAO-Dev-gen-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.DAO-Dev-gen-tech-category {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(31,29,136,0.05);
}

.DAO-Dev-gen-tech-category h3 {
  font-size: 1.3rem;
  color: #1f1d88;
  margin-bottom: 20px;
  text-align: center;
}

.DAO-Dev-gen-tech-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.DAO-Dev-gen-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.DAO-Dev-gen-tech-item:hover {
  background: rgba(31,29,136,0.03);
  transform: scale(1.05);
}

.DAO-Dev-gen-tech-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.DAO-Dev-gen-tech-item span {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

/* CTA Section */
.DAO-Dev-gen-cta {
  padding: 100px 5%;
  background: linear-gradient(135deg, #1f1d88 0%, #4a48d6 100%);
  color: white;
}

.DAO-Dev-gen-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.DAO-Dev-gen-cta-content {
  flex: 1;
}

.DAO-Dev-gen-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.DAO-Dev-gen-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #ffffff;
}

.DAO-Dev-gen-cta-btn {
  background: white;
  color: #1f1d88;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.DAO-Dev-gen-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.DAO-Dev-gen-cta-visual {
  flex: 1;
  position: relative;
}

.DAO-Dev-gen-cta-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.DAO-Dev-gen-cta-pattern {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, white 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .DAO-Dev-gen-hero {
    flex-direction: column;
    text-align: center;
    padding-bottom: 60px;
  }
  
  .DAO-Dev-gen-hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .DAO-Dev-gen-cta-buttons {
    justify-content: center;
  }
  
  .DAO-Dev-gen-container {
    flex-direction: column;
  }
  
  .DAO-Dev-gen-stats {
    justify-content: center;
  }
  
  .DAO-Dev-gen-cta-container {
    flex-direction: column;
    text-align: center;
  }
  
  .DAO-Dev-gen-cta-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .DAO-Dev-gen-hero h1 {
    font-size: 2.5rem;
  }
  
  .DAO-Dev-gen-section-header h2 {
    font-size: 2rem;
  }
  
  .DAO-Dev-gen-process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .DAO-Dev-gen-step-number {
    margin-bottom: 20px;
  }
  
  .DAO-Dev-gen-process-line {
    left: 40px;
  }
}

@media (max-width: 480px) {
  .DAO-Dev-gen-hero h1 {
    font-size: 2rem;
  }
  
  .DAO-Dev-gen-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .DAO-Dev-gen-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .DAO-Dev-gen-tech-items {
    grid-template-columns: 1fr;
  }
}

/* Base Styles */
.python-gen-hero {
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
  position: relative;
  overflow: hidden;
}

.python-gen-hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.python-gen-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.python-gen-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  max-width: 80%;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.python-gen-cta-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.python-gen-primary-btn {
  background-color: #1f1d88;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.python-gen-primary-btn:hover {
  background-color: #151366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 29, 136, 0.2);
}

.python-gen-secondary-btn {
  border: 2px solid #1f1d88;
  color: #1f1d88;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.python-gen-secondary-btn:hover {
  background-color: #1f1d88;
  color: white;
  transform: translateY(-2px);
}

.python-gen-hero-image {
  flex: 1;
  position: relative;
  max-width: 600px;
  animation: fadeInRight 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.python-gen-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: perspective(1000px) rotateY(-15deg);
}

.python-gen-code-animation {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: url('https://cdn-icons-png.flaticon.com/512/5968/5968350.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

/* Why Us Section */
.python-gen-why-us {
  padding: 6rem 2rem;
  background-color: white;
}

.python-gen-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.python-gen-section-header h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.python-gen-section-intro {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.6;
}

.python-gen-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.python-gen-feature-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.python-gen-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-top-color: #1f1d88;
}

.python-gen-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.python-gen-icon-wrapper img {
  width: 30px;
  height: 30px;
}

.python-gen-feature-card h3 {
  font-size: 1.25rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.python-gen-feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Services Section */
.python-gen-services {
  padding: 6rem 2rem;
  background-color: #f8fafc;
}

.python-gen-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.python-gen-service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.python-gen-tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
}

.python-gen-tab-btn:hover {
  background-color: #f0f4ff;
  color: #1f1d88;
}

.python-gen-tab-btn.active {
  background-color: #1f1d88;
  color: white;
  border-color: #1f1d88;
}

.python-gen-service-content {
  display: none;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.python-gen-service-content.active {
  display: flex;
  animation: fadeIn 0.5s ease-out;
}

.python-gen-service-details {
  flex: 1;
  padding: 3rem;
}

.python-gen-service-image {
  flex: 1;
}

.python-gen-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.python-gen-service-details h3 {
  font-size: 1.75rem;
  color: #1f1d88;
  margin-bottom: 1.5rem;
}

.python-gen-service-details p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.python-gen-service-list {
  list-style-type: none;
  padding: 0;
}

.python-gen-service-list li {
  padding: 0.5rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.75rem;
}

.python-gen-service-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 2px;
  background-color: #1f1d88;
}

/* Technologies Section */
.python-gen-technologies {
  padding: 6rem 2rem;
  background-color: white;
}

.python-gen-tech-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.python-gen-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 1rem;
}

.python-gen-tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.python-gen-tech-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.python-gen-tech-item span {
  font-weight: 600;
  color: #4a5568;
  text-align: center;
}

/* Case Studies Section */
.python-gen-case-studies {
  padding: 6rem 2rem;
  background-color: #f8fafc;
}

.python-gen-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.python-gen-case-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.python-gen-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.python-gen-case-image {
  height: 200px;
  overflow: hidden;
}

.python-gen-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.python-gen-case-card:hover .python-gen-case-image img {
  transform: scale(1.05);
}

.python-gen-case-content {
  padding: 2rem;
}

.python-gen-case-content h3 {
  font-size: 1.5rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.python-gen-case-industry {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.python-gen-case-desc {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.python-gen-case-stats {
  display: flex;
  gap: 1.5rem;
}

.python-gen-stat {
  text-align: center;
}

.python-gen-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f1d88;
}

.python-gen-stat-label {
  font-size: 0.875rem;
  color: #718096;
}

/* Process Section */
.python-gen-process {
  padding: 6rem 2rem;
  background-color: white;
}

.python-gen-process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.python-gen-process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.python-gen-process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.python-gen-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1f1d88;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
}

.python-gen-step-content {
  padding-top: 1rem;
}

.python-gen-step-content h3 {
  font-size: 1.5rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.python-gen-step-content p {
  color: #4a5568;
  line-height: 1.6;
}

/* Testimonials Section */
.python-gen-testimonials {
  padding: 6rem 2rem;
  background-color: #6562ff;
  color: white;
}

.python-gen-testimonials .python-gen-section-header h2,
.python-gen-testimonials .python-gen-section-intro {
  color: white;
}

.python-gen-testimonial-slider {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.python-gen-testimonial-card {
  min-width: 350px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 2rem;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.python-gen-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.python-gen-testimonial-quote {
  margin-bottom: 1.5rem;
}

.python-gen-testimonial-quote img {
  width: 40px;
  opacity: 0.7;
}

.python-gen-testimonial-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  color: #FFFFFF;
}

.python-gen-testimonial-author {
  display: flex;
  align-items: center;
  
}

.python-gen-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.python-gen-author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.python-gen-author-title {
  font-size: 0.875rem;
  opacity: 0.8;
    color: #FFFFFF;
}

/* CTA Section */
.python-gen-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #4f4ce2 0%, #151366 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.python-gen-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.python-gen-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.python-gen-cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
    color: #FFFFFF;
}

.python-gen-cta-btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.python-gen-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.python-gen-pattern-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
}

.python-gen-pattern-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .python-gen-hero {
    flex-direction: column;
    text-align: center;
  }
  
  .python-gen-hero-content {
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .python-gen-subtitle {
    max-width: 100%;
  }
  
  .python-gen-cta-buttons {
    justify-content: center;
  }
  
  .python-gen-service-content.active {
    flex-direction: column;
  }
  
  .python-gen-service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .python-gen-hero h1 {
    font-size: 2.5rem;
  }
  
  .python-gen-section-header h2 {
    font-size: 2rem;
  }
  
  .python-gen-process-step {
    flex-direction: column;
  }
  
  .python-gen-step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .python-gen-process-line {
    left: 40px;
  }
}
/* Base Styles */
.python-gen-dev-hero {
    display: flex;
    min-height: 90vh;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.python-gen-dev-hero-content {
    flex: 1;
    padding-right: 50px;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.python-gen-dev-hero h1 {
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.python-gen-dev-subtitle {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.python-gen-dev-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.python-gen-dev-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.python-gen-dev-hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.python-gen-dev-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.python-gen-dev-floating-1, 
.python-gen-dev-floating-2,
.python-gen-dev-floating-3,
.python-gen-dev-floating-4 {
    position: absolute;
    background: #2196F3;
    color: #f5f3f2;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    animation: float 9s infinite ease-in-out;
}

.python-gen-dev-floating-1 {
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.python-gen-dev-floating-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.python-gen-dev-floating-3 {
    top: 80%;
    left: 10%;
    animation-delay: 2s;
}

.python-gen-dev-floating-4 {
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}
/* Why Us Section */
.python-gen-dev-why-us {
    position: relative;
    padding: 100px 5%;
    background-color: #fff;
}

.python-gen-dev-section-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.python-gen-dev-why-us h2 {
    text-align: center;
    color: #1f1d88;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.python-gen-dev-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #495057;
    position: relative;
    z-index: 1;
}

.python-gen-dev-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.python-gen-dev-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.python-gen-dev-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.python-gen-dev-feature-highlight {
    border: 1px solid rgba(31, 29, 136, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.python-gen-dev-highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1f1d88;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.python-gen-dev-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(31, 29, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.python-gen-dev-feature-icon img {
    width: 40px;
    height: 40px;
}

.python-gen-dev-feature-card h3 {
    color: #1f1d88;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.python-gen-dev-feature-card p {
    color: #495057;
    line-height: 1.6;
}

/* Services Tabs */
.python-gen-dev-services {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.python-gen-dev-services h2 {
    text-align: center;
    color: #1f1d88;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.python-gen-dev-services-tabs {
    margin-top: 50px;
}

.python-gen-dev-tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.python-gen-dev-tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.python-gen-dev-tab-btn.active {
    background: #1f1d88;
    color: white;
}

.python-gen-dev-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.python-gen-dev-tab-content.active {
    display: block;
}

.python-gen-dev-tab-content-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.python-gen-dev-tab-text {
    flex: 1;
}

.python-gen-dev-tab-text h3 {
    color: #1f1d88;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.python-gen-dev-tab-text p {
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

.python-gen-dev-tab-text ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.python-gen-dev-tab-text li {
    margin-bottom: 10px;
    color: #495057;
    position: relative;
}

.python-gen-dev-tab-text li:before {
    content: "•";
    color: #1f1d88;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.python-gen-dev-tab-image {
    flex: 1;
}

.python-gen-dev-tab-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.python-gen-dev-tab-image:hover img {
    transform: scale(1.02);
}

/* Technologies Section */
.python-gen-dev-technologies {
    padding: 100px 5%;
    background: white;
}

.python-gen-dev-technologies h2 {
    text-align: center;
    color: #1f1d88;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.python-gen-dev-tech-stack {
    display: grid;
    gap: 40px;
    margin-top: 50px;
margin-left: 410px;
}

.python-gen-dev-tech-category h3 {
    color: #1f1d88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.python-gen-dev-tech-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1f1d88;
}

.python-gen-dev-tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.python-gen-dev-tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.python-gen-dev-tech-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.python-gen-dev-tech-item img {
    width: 30px;
    height: 30px;
}

.python-gen-dev-tech-item span {
    color: #495057;
    font-weight: 500;
}

/* Process Section */
.python-gen-dev-process {
    position: relative;
    padding: 100px 5%;
    background: #1f1d88;
    color: white;
}

.python-gen-dev-process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png') repeat;
    opacity: 0.1;
}

.python-gen-dev-process h2 {
    color: white;
    text-align: center;
    position: relative;
}

.python-gen-dev-process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
}

.python-gen-dev-process-step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.python-gen-dev-process-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.python-gen-dev-step-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: white;
    color: #1f1d88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.python-gen-dev-process-step h3 {
    color: white;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.python-gen-dev-process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.python-gen-dev-step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>') no-repeat center;
    opacity: 0.5;
}

/* Portfolio Section */
.python-gen-dev-portfolio {
    padding: 100px 5%;
    background: #f8f9fa;
}

.python-gen-dev-portfolio h2 {
    color: #1f1d88;
    text-align: center;
}

.python-gen-dev-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.python-gen-dev-portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.python-gen-dev-portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.python-gen-dev-portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.python-gen-dev-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.python-gen-dev-portfolio-item:hover .python-gen-dev-portfolio-image img {
    transform: scale(1.1);
}

.python-gen-dev-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.python-gen-dev-portfolio-item:hover .python-gen-dev-portfolio-overlay {
    transform: translateY(0);
}

.python-gen-dev-portfolio-overlay h3 {
    color: white;
    margin-bottom: 10px;
}

.python-gen-dev-portfolio-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.python-gen-dev-portfolio-link:hover {
    transform: translateX(5px);
}

/* Testimonials Section */
.python-gen-dev-testimonials {
    padding: 100px 5%;
    background: white;
}

.python-gen-dev-testimonials h2 {
    color: #1f1d88;
    text-align: center;
}

.python-gen-dev-testimonial-slider {
    margin-top: 50px;
    position: relative;
}

.python-gen-dev-testimonial-slide {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.python-gen-dev-testimonial-content p {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.python-gen-dev-testimonial-content p:before {
    content: '"';
    font-size: 4rem;
    color: rgba(31, 29, 136, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
}

.python-gen-dev-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.python-gen-dev-testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.python-gen-dev-testimonial-author h4 {
    color: #1f1d88;
    margin-bottom: 5px;
}

.python-gen-dev-testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* CTA Section */
.python-gen-dev-cta {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.python-gen-dev-cta-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png') repeat;
    opacity: 0.1;
}

.python-gen-dev-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.python-gen-dev-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.python-gen-dev-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Buttons */
.python-gen-dev-primary-btn {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.python-gen-dev-primary-btn:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.python-gen-dev-secondary-btn {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.python-gen-dev-secondary-btn:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.python-gen-dev-small-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.python-gen-dev-large-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .python-gen-dev-hero {
        flex-direction: column;
        padding-top: 80px;
    }
    
    .python-gen-dev-hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .python-gen-dev-hero h1 {
        font-size: 2.8rem;
    }
    
    .python-gen-dev-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .python-gen-dev-cta-buttons {
        justify-content: center;
    }
    
    .python-gen-dev-features-grid {
        grid-template-columns: 1fr;
    }
    
    .python-gen-dev-tab-content-inner {
        flex-direction: column;
    }
    
    .python-gen-dev-process-steps {
        flex-direction: column;
    }
    
    .python-gen-dev-step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .python-gen-dev-hero h1 {
        font-size: 2.2rem;
    }
    
    .python-gen-dev-subtitle {
        font-size: 1.2rem;
    }
    
    .python-gen-dev-secondary-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .python-gen-dev-portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero Section */
.python-api-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.python-api-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
    opacity: 0.6;
    z-index: 0;
}

.python-api-hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.python-api-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f1d88;
}

.python-api-subtitle {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.python-api-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out;
}

.python-api-hero-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.python-api-hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.python-api-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.python-api-primary-btn {
    background-color: #1f1d88;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.python-api-primary-btn:hover {
    background-color: #3a38a8;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.python-api-secondary-btn {
    border: 2px solid #1f1d88;
    color: #1f1d88;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.python-api-secondary-btn:hover {
    background-color: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.python-api-benefits {
    padding: 6rem 8%;
    background-color: white;
}

.python-api-section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.python-api-section-header h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.python-api-section-header-why h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
       text-align: center;
}

.python-api-section-subtitle-why {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.python-api-section-header-stack h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
       text-align: center;
}

.python-api-section-subtitle-stack {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.python-api-section-header-solutions h2 {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
       text-align: center;
}

.python-api-section-subtitle-solutions {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.python-api-section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.python-api-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.python-api-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.python-api-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 29, 136, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.python-api-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.python-api-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.python-api-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.python-api-benefit-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.python-api-benefit-card p {
    color: #495057;
    line-height: 1.6;
}

/* Technologies Section */
.python-api-technologies {
    padding: 6rem 8%;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.python-api-technologies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgzMSwyOSwxMzYsMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4=');
    opacity: 0.6;
    z-index: 0;
}

.python-api-tech-tabs {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.python-api-tech-tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.python-api-tech-tablinks {
    padding: 0.8rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    position: relative;
    overflow: hidden;
}

.python-api-tech-tablinks::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1f1d88;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.python-api-tech-tablinks.active {
    color: #1f1d88;
}

.python-api-tech-tablinks.active::before {
    transform: scaleX(1);
}

.python-api-tech-tablinks:hover {
    color: #1f1d88;
}

.python-api-tech-tabcontent {
    display: none;
    animation: fadeIn 0.5s ease;
}

.python-api-tech-tabcontent.active {
    display: block;
}

.python-api-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.python-api-tech-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.python-api-tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.python-api-tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.python-api-tech-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.python-api-tech-item h4 {
    font-size: 1.25rem;
    color: #1f1d88;
    margin-bottom: 1rem;
}

.python-api-tech-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Process Section */
.python-api-process {
    padding: 6rem 8%;
    background-color: #1f1d88;
    color: white;
    position: relative;
    overflow: hidden;
}

.python-api-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiIGZpbGwtcnVsZT0ibm9uemVybyI+PHBhdGggZD0iTTM2IDM0LjVWNTZoNHYtMjEuNUgzNnptLTI0IDBWNjBoNFYzNC41aC00ek01NiAzNC41VjYwaDRWMzQuNWgtNHpNMTYgMTYuNVY2MGg0VjE2LjVoLTR6TTM2IDB2MTYuNWg0VjBoLTR6TTU2IDE2VjYwaDRWMTZoLTR6TTAgMzQuNVY2MGg0VjM0LjVIMHpNMCAxNi41VjYwaDRWMTYuNUgwek0xNiAwdjE2LjVoNFYwaC00eiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
}

.python-api-section-header h2 {
    color: white;
}

.python-api-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.python-api-process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.python-api-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 100px;
}

.python-api-process-step:last-child {
    margin-bottom: 0;
}

.python-api-process-step::before {
    content: '';
    position: absolute;
    left: 49px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.python-api-process-step:last-child::before {
    height: 60px;
}

.python-api-step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.python-api-step-content {
    flex: 1;
}

.python-api-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.python-api-step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Showcase Section */
.python-api-showcase {
    padding: 6rem 8%;
    background-color: white;
}

.python-api-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.python-api-showcase-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.python-api-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.python-api-showcase-card-reverse {
    flex-direction: row-reverse;
}

.python-api-showcase-img {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.python-api-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.python-api-showcase-card:hover .python-api-showcase-img img {
    transform: scale(1.05);
}

.python-api-showcase-content {
    flex: 1;
    padding: 3rem;
}

.python-api-showcase-content h3 {
    font-size: 2rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
}

.python-api-showcase-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.python-api-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.python-api-feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #495057;
}

.python-api-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 10px;
    height: 10px;
    background-color: #1f1d88;
    border-radius: 50%;
}

/* CTA Section */
.python-api-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.python-api-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMCwwLDAsMC4wNSkiIGZpbGwtcnVsZT0ibm9uemVybyI+PHBhdGggZD0iTTM2IDM0LjVWNTZoNHYtMjEuNUgzNnptLTI0IDBWNjBoNFYzNC41aC00ek01NiAzNC41VjYwaDRWMzQuNWgtNHpNMTYgMTYuNVY2MGg0VjE2LjVoLTR6TTM2IDB2MTYuNWg0VjBoLTR6TTU2IDE2VjYwaDRWMTZoLTR6TTAgMzQuNVY2MGg0VjM0LjVIMHpNMCAxNi41VjYwaDRWMTYuNUgwek0xNiAwdjE2LjVoNFYwaC00eiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.3;
}

.python-api-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.python-api-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.python-api-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.python-api-cta-btn {
    display: inline-block;
    background-color: white;
    color: #1f1d88;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.python-api-cta-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .python-api-hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
    }
    
    .python-api-hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .python-api-cta-buttons {
        justify-content: center;
    }
    
    .python-api-showcase-card {
        flex-direction: column;
    }
    
    .python-api-showcase-img {
        min-height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .python-api-hero h1 {
        font-size: 2.5rem;
    }
    
    .python-api-subtitle {
        font-size: 1.25rem;
    }
    
    .python-api-process-step {
        padding-left: 80px;
    }
    
    .python-api-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .python-api-hero h1 {
        font-size: 2rem;
    }
    
    .python-api-section-header h2 {
        font-size: 2rem;
    }
    
    .python-api-process-step {
        padding-left: 70px;
    }
    
    .python-api-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .python-api-showcase-content {
        padding: 2rem;
    }
}

/* Base Styles */
.lightspeed-dev {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 100%;
  overflow-x: hidden;
}

.lightspeed-dev * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lightspeed-dev h1, 
.lightspeed-dev h2, 
.lightspeed-dev h3, 
.lightspeed-dev h4 {
  line-height: 1.2;
  font-weight: 700;
}

.lightspeed-dev img {
  max-width: 100%;
  height: auto;
}

.lightspeed-dev__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.lightspeed-dev__btn-primary {
  background-color: #1f1d88;
  color: white;
  box-shadow: 0 4px 6px rgba(31, 29, 136, 0.1);
}

.lightspeed-dev__btn-primary:hover {
  background-color: #2a28a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(31, 29, 136, 0.15);
}

.lightspeed-dev__btn-secondary {
  background-color: white;
  color: #1f1d88;
  border: 2px solid #1f1d88;
}

.lightspeed-dev__btn-secondary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.lightspeed-dev__section-title {
  color: #1f1d88;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.lightspeed-dev__section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1f1d88, #3a38d8);
  border-radius: 2px;
}

.lightspeed-dev__section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Hero Section */
.lightspeed-dev__hero {
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.lightspeed-dev__hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.lightspeed-dev__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.lightspeed-dev__hero-title {
  font-size: 3.5rem;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.lightspeed-dev__hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.lightspeed-dev__hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.lightspeed-dev__hero-image {
  flex: 1;
  display: none;
}

/* Stats Section */
.lightspeed-dev__stats {
  background-color: #1f1d88;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.lightspeed-dev__stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lightspeed-dev__stat-item {
  padding: 2rem;
  position: relative;
}

.lightspeed-dev__stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.lightspeed-dev__stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #fff, #ddd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lightspeed-dev__stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Services Section */
.lightspeed-dev__services {
  padding: 6rem 2rem;
  background-color: #fff;
}

.lightspeed-dev__services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lightspeed-dev__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lightspeed-dev__service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lightspeed-dev__service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31, 29, 136, 0.1);
  border-color: rgba(31, 29, 136, 0.2);
}

.lightspeed-dev__service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lightspeed-dev__service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightspeed-dev__service-title {
  color: #1f1d88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lightspeed-dev__service-desc {
  color: #666;
  margin-bottom: 1.5rem;
}

.lightspeed-dev__service-features {
  list-style: none;
}

.lightspeed-dev__service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightspeed-dev__service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1f1d88;
  font-weight: bold;
}

/* Process Section */
.lightspeed-dev__process {
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.lightspeed-dev__process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.lightspeed-dev__process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #1f1d88, #3a38d8);
  border-radius: 2px;
}

.lightspeed-dev__process-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightspeed-dev__process-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.lightspeed-dev__process-step {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1f1d88, #3a38d8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(31, 29, 136, 0.3);
}

.lightspeed-dev__process-content {
  width: calc(50% - 60px);
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lightspeed-dev__process-title {
  color: #1f1d88;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.lightspeed-dev__process-desc {
  color: #666;
}

/* Tech Stack Section */
.lightspeed-dev__techstack {
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  background-color: white;
  margin-left: 250px;
}

.lightspeed-dev__techstack-content {
  flex: 1;
  max-width: 600px;
}

.lightspeed-dev__techstack-image {
  flex: 1;
  position: relative;
  display: none;
}

.lightspeed-dev__techstack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lightspeed-dev__techstack-category {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lightspeed-dev__techstack-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.lightspeed-dev__techstack-title {
  color: #1f1d88;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(31, 29, 136, 0.1);
}

.lightspeed-dev__techstack-list {
  list-style: none;
}

.lightspeed-dev__techstack-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.lightspeed-dev__techstack-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1f1d88;
  font-weight: bold;
}

/* Case Studies Section */
.lightspeed-dev__casestudies {
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.lightspeed-dev__casestudies-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.lightspeed-dev__casestudy-card {
  flex: 0 0 90%;
  scroll-snap-align: start;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.lightspeed-dev__casestudy-image {
  height: 200px;
  overflow: hidden;
}

.lightspeed-dev__casestudy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lightspeed-dev__casestudy-card:hover .lightspeed-dev__casestudy-image img {
  transform: scale(1.05);
}

.lightspeed-dev__casestudy-content {
  padding: 2rem;
  text-align: left;
}

.lightspeed-dev__casestudy-title {
  color: #1f1d88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lightspeed-dev__casestudy-desc {
  color: #666;
  margin-bottom: 1.5rem;
}

.lightspeed-dev__casestudy-stats {
  display: flex;
  gap: 1rem;
}

.lightspeed-dev__casestudy-stat {
  flex: 1;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.lightspeed-dev__casestudy-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1f1d88;
}

.lightspeed-dev__casestudy-stat-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

/* CTA Section */
.lightspeed-dev__cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1f1d88 0%, #3a38d8 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lightspeed-dev__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.lightspeed-dev__cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.lightspeed-dev__cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: #ffffff;
}

.lightspeed-dev__cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (min-width: 768px) {
  .lightspeed-dev__hero-title {
    font-size: 4rem;
  }
  
  .lightspeed-dev__hero-image {
    display: block;
  }
  
  .lightspeed-dev__techstack-image {
    display: block;
  }
  
  .lightspeed-dev__casestudy-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .lightspeed-dev__hero:before {
    display: none;
  }
  
  .lightspeed-dev__casestudy-card {
    flex-direction: row;
    flex: 0 0 calc(50% - 1rem);
  }
  
  .lightspeed-dev__casestudy-image {
    height: auto;
    flex: 1;
  }
  
  .lightspeed-dev__casestudy-content {
    flex: 1;
  }
}

/* Counter Animation */
.lightspeed-dev__stat-number {
  transition: all 1s ease;
}


/* LightSpeed POS Integration Services CSS */
.lightspeed-pos {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.lightspeed-pos__hero {
  display: flex;
  min-height: 90vh;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  position: relative;
  overflow: hidden;
}

.lightspeed-pos__hero-content {
  flex: 1;
  padding: 8rem 5rem;
  max-width: 50%;
  z-index: 2;
}

.lightspeed-pos__hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.lightspeed-pos__hero-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 80%;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.lightspeed-pos__hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.lightspeed-pos__cta-primary {
  background: #1f1d88;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.lightspeed-pos__cta-primary:hover {
  background: #3a38a8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.lightspeed-pos__cta-secondary {
  border: 2px solid #1f1d88;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.lightspeed-pos__cta-secondary:hover {
  background: #1f1d88;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.lightspeed-pos__hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.lightspeed-pos__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: scaleIn 1.5s ease-out;
}

.lightspeed-pos__hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4yIj48cGF0aCBkPSJNMCA0MGw0MC0wIE0wIDQwbDIwLTIwIE0wIDQwbC0yMC0yMCBNNDAgMGwwIDQwIE00MCAwbC0yMCAyMCBNNDAgMGwyMCAyMCIvPjwvZz48L2c+PC9zdmc+');
  opacity: 0.8;
  animation: patternSlide 60s linear infinite;
}

/* Partners Section */
.lightspeed-pos__partners {
  background: white;
  padding: 4rem 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.lightspeed-pos__partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lightspeed-pos__partners-title {
  color: #777;
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.lightspeed-pos__partners-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0 2rem;
}

.lightspeed-pos__partners-logos img {
  height: 40px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.lightspeed-pos__partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Services Section */
.lightspeed-pos__services {
  padding: 8rem 2rem;
  background: #f9faff;
  position: relative;
}

.lightspeed-pos__services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.lightspeed-pos__services-title {
  font-size: 2.8rem;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  position: relative;
}

.lightspeed-pos__services-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #1f1d88;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.lightspeed-pos__services-intro {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.lightspeed-pos__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lightspeed-pos__service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 29, 136, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.lightspeed-pos__service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31, 29, 136, 0.15);
}

.lightspeed-pos__service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 29, 136, 0.05) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
}

.lightspeed-pos__service-icon {
  height: 200px;
  overflow: hidden;
}

.lightspeed-pos__service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lightspeed-pos__service-card:hover .lightspeed-pos__service-icon img {
  transform: scale(1.05);
}

.lightspeed-pos__service-title {
  color: #1f1d88;
  font-size: 1.5rem;
  margin: 1.5rem 1.5rem 1rem;
}

.lightspeed-pos__service-desc {
  color: #666;
  margin: 0 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.lightspeed-pos__service-features {
  margin: 0 1.5rem 2rem;
  padding: 0;
  list-style: none;
}

.lightspeed-pos__service-features li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: #444;
}

.lightspeed-pos__service-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  background: #1f1d88;
  border-radius: 50%;
}

/* Benefits Section */
.lightspeed-pos__benefits {
  display: flex;
  min-height: 800px;
  background: #1f1d88;
  color: white;
  position: relative;
  overflow: hidden;
}

.lightspeed-pos__benefits-content {
  flex: 1;
  padding: 8rem 5rem;
  z-index: 2;
}

.lightspeed-pos__benefits-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}

.lightspeed-pos__benefits-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: white;
  margin: 1.5rem 0 0;
  border-radius: 2px;
}

.lightspeed-pos__benefits-list {
  max-width: 600px;
}

.lightspeed-pos__benefit-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.lightspeed-pos__benefit-item:nth-child(1) { animation-delay: 0.2s; }
.lightspeed-pos__benefit-item:nth-child(2) { animation-delay: 0.4s; }
.lightspeed-pos__benefit-item:nth-child(3) { animation-delay: 0.6s; }
.lightspeed-pos__benefit-item:nth-child(4) { animation-delay: 0.8s; }

.lightspeed-pos__benefit-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  min-width: 3rem;
}

.lightspeed-pos__benefit-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: white;
}

.lightspeed-pos__benefit-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.lightspeed-pos__benefits-visual {
  flex: 1;
  position: relative;
}

.lightspeed-pos__benefits-image {
  width: 100%;
  height: 100%;
}

.lightspeed-pos__benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lightspeed-pos__benefits-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgNDBsNDAtMCBNMCA0MGwyMC0yMCBNMCA0MGwtMjAtMjAgTTQwIDBsMCA0MCBNNDAgMGwtMjAgMjAgTTQwIDBsMjAgMjAiLz48L2c+PC9nPjwvc3ZnPg');
  opacity: 0.8;
  animation: patternSlide 60s linear infinite reverse;
}

/* Case Studies Section */
.lightspeed-pos__case-studies {
  padding: 8rem 2rem;
  background: white;
  text-align: center;
}

.lightspeed-pos__case-studies-title {
  font-size: 2.8rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.lightspeed-pos__case-studies-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.lightspeed-pos__case-studies-slider {
  display: flex;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lightspeed-pos__case-studies-slider::-webkit-scrollbar {
  display: none;
}

.lightspeed-pos__case-study {
  min-width: 600px;
  scroll-snap-align: start;
  display: flex;
  gap: 3rem;
  text-align: left;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31, 29, 136, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
}

.lightspeed-pos__case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 29, 136, 0.15);
}

.lightspeed-pos__case-study-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.lightspeed-pos__case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightspeed-pos__case-study-content {
  flex: 1;
}

.lightspeed-pos__case-study-content h3 {
  font-size: 1.8rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.lightspeed-pos__case-study-stats {
  color: #1f1d88;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.lightspeed-pos__case-study-content p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.lightspeed-pos__case-study-link {
  color: #1f1d88;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.lightspeed-pos__case-study-link:hover {
  color: #3a38a8;
  gap: 0.8rem;
}

/* CTA Section */
.lightspeed-pos__cta {
  background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
  color: white;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lightspeed-pos__cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lightspeed-pos__cta-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.lightspeed-pos__cta-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.lightspeed-pos__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.lightspeed-pos__cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTAgNDBsNDAtMCBNMCA0MGwyMC0yMCBNMCA0MGwtMjAtMjAgTTQwIDBsMCA0MCBNNDAgMGwtMjAgMjAgTTQwIDBsMjAgMjAiLz48L2c+PC9nPjwvc3ZnPg');
  opacity: 0.5;
  animation: patternSlide 60s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes patternSlide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .lightspeed-pos__hero-content {
    padding: 6rem 3rem;
  }
  
  .lightspeed-pos__benefits-content {
    padding: 6rem 3rem;
  }
}

@media (max-width: 992px) {
  .lightspeed-pos__hero {
    flex-direction: column;
    min-height: auto;
  }
  
  .lightspeed-pos__hero-content {
    max-width: 100%;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .lightspeed-pos__hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .lightspeed-pos__hero-buttons {
    justify-content: center;
  }
  
  .lightspeed-pos__hero-image {
    height: 400px;
  }
  
  .lightspeed-pos__benefits {
    flex-direction: column;
  }
  
  .lightspeed-pos__benefits-content {
    padding: 4rem 2rem;
  }
  
  .lightspeed-pos__benefits-visual {
    height: 400px;
  }
  
  .lightspeed-pos__case-study {
    flex-direction: column;
    min-width: 80%;
  }
}

@media (max-width: 768px) {
  .lightspeed-pos__hero-title {
    font-size: 2.5rem;
  }
  
  .lightspeed-pos__hero-subtitle {
    font-size: 1.2rem;
  }
  
  .lightspeed-pos__services-title,
  .lightspeed-pos__benefits-title,
  .lightspeed-pos__case-studies-title,
  .lightspeed-pos__cta-title {
    font-size: 2.2rem;
  }
  
  .lightspeed-pos__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .lightspeed-pos__hero-title {
    font-size: 2rem;
  }
  
  .lightspeed-pos__hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .lightspeed-pos__services-grid {
    grid-template-columns: 1fr;
  }
  
  .lightspeed-pos__case-study {
    min-width: 90%;
  }
}

/* Base Styles */
.lightspeed-ecomm {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.lightspeed-ecomm h1, 
.lightspeed-ecomm h2, 
.lightspeed-ecomm h3, 
.lightspeed-ecomm h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lightspeed-ecomm h1 {
    font-size: 3.5rem;
}

.lightspeed-ecomm h2 {
    font-size: 2.5rem;
    color: #1f1d88;
}

.lightspeed-ecomm h3 {
    font-size: 1.75rem;
    color: #1f1d88;
}

.lightspeed-ecomm p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    color: #777;
}

.lightspeed-ecomm a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.lightspeed-ecomm img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.lightspeed-ecomm.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 5% 8%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    overflow: hidden;
}

.lightspeed-ecomm.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}


.lightspeed-ecomm.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.lightspeed-ecomm.hero-image {
    flex: 1;
    z-index: 1;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.lightspeed-ecomm.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(31, 29, 136, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.lightspeed-ecomm.hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.lightspeed-ecomm.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/light-honeycomb.png');
    opacity: 0.05;
    z-index: 0;
}

.lightspeed-ecomm.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Stats Section */
.lightspeed-ecomm.stats-section {
    background-color: #1f1d88;
    padding: 4rem 0;
    color: white;
}

.lightspeed-ecomm.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.lightspeed-ecomm.stat-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
}

.lightspeed-ecomm.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f1d88;
}

.lightspeed-ecomm.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.lightspeed-ecomm.features-section {
    padding: 6rem 8%;
    background-color: #fff;
}

.lightspeed-ecomm.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.lightspeed-ecomm.section-subtitle {
    font-size: 1.2rem;
    color: #777;
}

.lightspeed-ecomm.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lightspeed-ecomm.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(31, 29, 136, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 29, 136, 0.1);
}

.lightspeed-ecomm.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 29, 136, 0.15);
}

.lightspeed-ecomm.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef1ff 0%, #d9deff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lightspeed-ecomm.feature-icon img {
    width: 40px;
    height: 40px;
}

.lightspeed-ecomm.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.lightspeed-ecomm.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.lightspeed-ecomm.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f1d88;
    font-weight: bold;
}

/* Showcase Section */
.lightspeed-ecomm.showcase-section {
    padding: 6rem 8%;
    background-color: #f8f9ff;
}

.lightspeed-ecomm.showcase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.lightspeed-ecomm.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.lightspeed-ecomm.showcase-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.lightspeed-ecomm.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lightspeed-ecomm.showcase-item:hover .lightspeed-ecomm.showcase-image img {
    transform: scale(1.05);
}

.lightspeed-ecomm.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100px);
    transition: transform 0.5s ease;
    opacity: 0;
}

.lightspeed-ecomm.showcase-item:hover .lightspeed-ecomm.showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.lightspeed-ecomm.showcase-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.lightspeed-ecomm.showcase-overlay p {
    color: white;
    
}


.lightspeed-ecomm.showcase-link {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    font-weight: 600;
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
}

.lightspeed-ecomm.tech-stack {
    text-align: center;
    margin-top: 5rem;
}

.lightspeed-ecomm.tech-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.lightspeed-ecomm.tech-icons img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lightspeed-ecomm.tech-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Process Section */
.lightspeed-ecomm.process-section {
    padding: 6rem 8%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.lightspeed-ecomm.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lightspeed-ecomm.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #1f1d88, #6a6ac9);
}

.lightspeed-ecomm.process-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.lightspeed-ecomm.process-number {
    width: 50px;
    height: 50px;
    background-color: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(31, 29, 136, 0.1);
}

.lightspeed-ecomm.process-content {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(31, 29, 136, 0.05);
    transition: all 0.3s ease;
}

.lightspeed-ecomm.process-item:hover .lightspeed-ecomm.process-content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(31, 29, 136, 0.1);
}

/* Testimonials Section */
.lightspeed-ecomm.testimonials-section {
    padding: 6rem 8%;
    background-color: #1f1d88;
    color: white;
}

.lightspeed-ecomm.testimonials-section h2,
.lightspeed-ecomm.testimonials-section h3,
.lightspeed-ecomm.testimonials-section h4 {
    color: white;
}

.lightspeed-ecomm.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
}

.lightspeed-ecomm.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightspeed-ecomm.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.lightspeed-ecomm.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: -2rem;
}

.lightspeed-ecomm.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 2rem;
}

.lightspeed-ecomm.testimonial-author {
    display: flex;
    align-items: center;
}

.lightspeed-ecomm.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.lightspeed-ecomm.author-info h4 {
    margin-bottom: 0.25rem;
}

.lightspeed-ecomm.author-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.lightspeed-ecomm.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    opacity: 0.7;
}

.lightspeed-ecomm.client-logos img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.lightspeed-ecomm.client-logos img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* CTA Section */
.lightspeed-ecomm.cta-section {
    padding: 0 8%;
    margin: 6rem 0;
}

.lightspeed-ecomm.cta-container {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1f1d88 0%, #3a38a8 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(31, 29, 136, 0.3);
}

.lightspeed-ecomm.cta-content {
    flex: 1;
    padding: 4rem;
    color: white;
}

.lightspeed-ecomm.cta-content h2 {
    color: white;
}

.lightspeed-ecomm.cta-content p {
    color: white;
}

.lightspeed-ecomm.cta-image {
    flex: 1;
}

.lightspeed-ecomm.cta-image img {
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.lightspeed-ecomm.faq-section {
    padding: 6rem 8%;
    background-color: #f8f9ff;
}

.lightspeed-ecomm.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.lightspeed-ecomm.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(31, 29, 136, 0.05);
}

.lightspeed-ecomm.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    
}



.lightspeed-ecomm.faq-question:hover {
    background: #f0f2ff;
}

.lightspeed-ecomm.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.lightspeed-ecomm.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.lightspeed-ecomm.faq-question.active .lightspeed-ecomm.faq-toggle {
    transform: rotate(45deg);
}

.lightspeed-ecomm.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.lightspeed-ecomm.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #777;
}

/* Buttons */
.lightspeed-ecomm.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1f1d88;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 29, 136, 0.3);
}

.lightspeed-ecomm.cta-button:hover {
    background-color: #3a38a8;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(31, 29, 136, 0.4);
}

.lightspeed-ecomm.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1f1d88;
    border: 2px solid #1f1d88;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lightspeed-ecomm.secondary-button:hover {
    background-color: rgba(31, 29, 136, 0.1);
    transform: translateY(-3px);
}

/* 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);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .lightspeed-ecomm.hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .lightspeed-ecomm.hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .lightspeed-ecomm.hero-cta {
        justify-content: center;
    }
    
    .lightspeed-ecomm.cta-container {
        flex-direction: column;
    }
    
    .lightspeed-ecomm.cta-image {
        order: -1;
        width: 100%;
    }
    
    .lightspeed-ecomm.cta-image img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .lightspeed-ecomm h1 {
        font-size: 2.5rem;
    }
    
    .lightspeed-ecomm h2 {
        font-size: 2rem;
    }
    
    .lightspeed-ecomm.process-timeline:before {
        left: 25px;
    }
    
    .lightspeed-ecomm.process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .lightspeed-ecomm.hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lightspeed-ecomm.cta-content {
        padding: 2rem;
    }
}

/* CSS for Node.js Framework Development Services */
.technologies-dev-gen-hero {
  display: flex;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.technologies-dev-gen-hero-content {
  flex: 1;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.technologies-dev-gen-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #1f1d88;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.technologies-dev-gen-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.technologies-dev-gen-cta-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.technologies-dev-gen-primary-btn {
  background: #1f1d88;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.technologies-dev-gen-primary-btn:hover {
  background: #3a38a8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.technologies-dev-gen-secondary-btn {
  border: 2px solid #1f1d88;
  color: #1f1d88;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.technologies-dev-gen-secondary-btn:hover {
  background: #1f1d88;
  color: white;
  transform: translateY(-3px);
}

.technologies-dev-gen-hero-image {
  flex: 1;
  position: relative;
}

.technologies-dev-gen-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technologies-dev-gen-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/connected.png');
  opacity: 0.1;
}

.technologies-dev-gen-about {
  padding: 6rem 0;
  background: white;
}

.technologies-dev-gen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.technologies-dev-gen-about-content {
  margin-bottom: 4rem;
}

.technologies-dev-gen-about h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1.5rem;
  text-align: center;
}

.technologies-dev-gen-about p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.technologies-dev-gen-stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.technologies-dev-gen-stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  min-width: 150px;
}

.technologies-dev-gen-stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.technologies-dev-gen-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.technologies-dev-gen-stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.technologies-dev-gen-about-image {
  position: relative;
  margin-top: 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}

.technologies-dev-gen-about-image:hover {
  transform: scale(1.02);
}

.technologies-dev-gen-about-image img {
  width: 100%;
  display: block;
}

.technologies-dev-gen-tech-stack {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.technologies-dev-gen-tech-stack span {
  background: #1f1d88;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.technologies-dev-gen-services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafc 0%, #eef1f7 100%);
}

.technologies-dev-gen-services h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
  text-align: center;
}

.technologies-dev-gen-section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}

.technologies-dev-gen-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.technologies-dev-gen-service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.technologies-dev-gen-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.technologies-dev-gen-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 29, 136, 0.1);
  border-radius: 50%;
}

.technologies-dev-gen-service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.technologies-dev-gen-service-card h3 {
  font-size: 1.3rem;
  color: #1f1d88;
  margin-bottom: 1rem;
}

.technologies-dev-gen-service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.technologies-dev-gen-process {
  padding: 6rem 0;
  background: white;
}

.technologies-dev-gen-process h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
  text-align: center;
}

.technologies-dev-gen-process-steps {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
}

.technologies-dev-gen-process-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1f1d88, #6a68d5);
  z-index: 1;
}

.technologies-dev-gen-process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.technologies-dev-gen-step-number {
  width: 80px;
  height: 80px;
  background: #1f1d88;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 2rem;
  box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.technologies-dev-gen-step-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.technologies-dev-gen-process-step:nth-child(1) .technologies-dev-gen-step-content {
  animation-delay: 0.2s;
}

.technologies-dev-gen-process-step:nth-child(2) .technologies-dev-gen-step-content {
  animation-delay: 0.4s;
}

.technologies-dev-gen-process-step:nth-child(3) .technologies-dev-gen-step-content {
  animation-delay: 0.6s;
}

.technologies-dev-gen-process-step:nth-child(4) .technologies-dev-gen-step-content {
  animation-delay: 0.8s;
}

.technologies-dev-gen-process-step:nth-child(5) .technologies-dev-gen-step-content {
  animation-delay: 1s;
}

.technologies-dev-gen-process-step:nth-child(6) .technologies-dev-gen-step-content {
  animation-delay: 1.2s;
}

.technologies-dev-gen-step-content h3 {
  font-size: 1.3rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.technologies-dev-gen-step-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.technologies-dev-gen-case-studies {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafc 0%, #eef1f7 100%);
}

.technologies-dev-gen-case-studies h2 {
  font-size: 2.5rem;
  color: #1f1d88;
  margin-bottom: 1rem;
  text-align: center;
}

.technologies-dev-gen-case-study-slider {
  max-width: 1200px;
  margin: 3rem auto 0;
}

.technologies-dev-gen-case-study {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.technologies-dev-gen-case-image {
  flex: 1;
}

.technologies-dev-gen-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technologies-dev-gen-case-content {
  flex: 1;
  padding: 3rem;
}

.technologies-dev-gen-case-content h3 {
  font-size: 1.8rem;
  color: #1f1d88;
  margin-bottom: 0.5rem;
}

.technologies-dev-gen-case-meta {
  color: #6a68d5;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.technologies-dev-gen-case-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.technologies-dev-gen-case-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.technologies-dev-gen-case-stats div {
  text-align: center;
}

.technologies-dev-gen-case-stats div span:first-child {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f1d88;
  margin-bottom: 0.3rem;
}

.technologies-dev-gen-case-stats div span:last-child {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}

.technologies-dev-gen-cta {
  padding: 6rem 0;
  background: #1f1d88;
  position: relative;
  overflow: hidden;
}

.technologies-dev-gen-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.technologies-dev-gen-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.technologies-dev-gen-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #ffffff;
}

.technologies-dev-gen-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/45-degree-fabric-light.png');
  opacity: 0.1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .technologies-dev-gen-hero {
    flex-direction: column;
    min-height: auto;
  }
  
  .technologies-dev-gen-hero-content {
    padding: 3rem 2rem;
    order: 2;
  }
  
  .technologies-dev-gen-hero-image {
    order: 1;
    height: 400px;
  }
  
  .technologies-dev-gen-hero h1 {
    font-size: 2.5rem;
  }
  
  .technologies-dev-gen-subtitle {
    font-size: 1.2rem;
  }
  
  .technologies-dev-gen-stats-container {
    flex-wrap: wrap;
  }
  
  .technologies-dev-gen-case-study {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .technologies-dev-gen-hero h1 {
    font-size: 2rem;
  }
  
  .technologies-dev-gen-about h2,
  .technologies-dev-gen-services h2,
  .technologies-dev-gen-process h2,
  .technologies-dev-gen-case-studies h2,
  .technologies-dev-gen-cta h2 {
    font-size: 2rem;
  }
  
  .technologies-dev-gen-process-step {
    flex-direction: column;
  }
  
  .technologies-dev-gen-step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .technologies-dev-gen-process-line {
    left: 40px;
  }
}

@media (max-width: 576px) {
  .technologies-dev-gen-hero-content {
    padding: 2rem 1.5rem;
  }
  
  .technologies-dev-gen-cta-buttons {
    flex-direction: column;
  }
  
  .technologies-dev-gen-primary-btn,
  .technologies-dev-gen-secondary-btn {
    width: 100%;
    text-align: center;
  }
  
  .technologies-dev-gen-case-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Base Styles */
:root {
    --frameworks-gen-primary: #1f1d88;
    --frameworks-gen-primary-light: #3a38a8;
    --frameworks-gen-secondary: #ff6b6b;
    --frameworks-gen-dark: #2d3748;
    --frameworks-gen-light: #f8f9fa;
    --frameworks-gen-gray: #6c757d;
    --frameworks-gen-light-gray: #e9ecef;
    --frameworks-gen-success: #28a745;
    --frameworks-gen-info: #17a2b8;
    --frameworks-gen-warning: #ffc107;
    --frameworks-gen-danger: #dc3545;
}

/* Typography */
.frameworks-gen-hero-title,
.frameworks-gen-section-title,
.frameworks-gen-cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.frameworks-gen-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.frameworks-gen-section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--frameworks-gen-primary);
}

.frameworks-gen-section-title span {
    color: var(--frameworks-gen-secondary);
}

.frameworks-gen-hero-subtitle,
.frameworks-gen-section-subtitle {
    font-size: 1.25rem;
    color: var(--frameworks-gen-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.frameworks-gen-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
    font-size: 1rem;
    border: 2px solid transparent;
}

.frameworks-gen-btn-primary {
    background-color: var(--frameworks-gen-primary);
    color: white;
}

.frameworks-gen-btn-primary:hover {
    background-color: var(--frameworks-gen-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.frameworks-gen-btn-secondary {
    background-color: transparent;
    color: var(--frameworks-gen-primary);
    border-color: var(--frameworks-gen-primary);
}

.frameworks-gen-btn-secondary:hover {
    background-color: var(--frameworks-gen-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.frameworks-gen-btn-outline {
    background-color: transparent;
    color: #1f1d88;
    border-color: #1f1d88;
}

.frameworks-gen-btn-outline:hover {
    background-color: white;
    color: var(--frameworks-gen-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Container */
.frameworks-gen-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.frameworks-gen-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    padding: 5rem 0;
}

.frameworks-gen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.frameworks-gen-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.frameworks-gen-hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 700px;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.frameworks-gen-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.frameworks-gen-hero:hover .frameworks-gen-hero-image img {
    transform: scale(1.05);
}

.frameworks-gen-hero-title span {
    color: var(--frameworks-gen-primary);
    position: relative;
    display: inline-block;
}

.frameworks-gen-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 107, 107, 0.4);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Scroll Indicator */
.frameworks-gen-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frameworks-gen-scroll-indicator span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: var(--frameworks-gen-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: frameworks-gen-bounce 1.5s infinite ease-in-out;
}

.frameworks-gen-scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.frameworks-gen-scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.frameworks-gen-scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes frameworks-gen-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Stats Section */
.frameworks-gen-stats {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.frameworks-gen-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.frameworks-gen-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.frameworks-gen-stat-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frameworks-gen-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--frameworks-gen-primary);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.frameworks-gen-stat-label {
    font-size: 1.1rem;
    color: var(--frameworks-gen-gray);
    font-weight: 500;
}

/* Services Section */
.frameworks-gen-services {
    padding: 6rem 0;
    background-color: var(--frameworks-gen-light);
    position: relative;
    overflow: hidden;
}

.frameworks-gen-services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--frameworks-gen-secondary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--frameworks-gen-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.frameworks-gen-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.frameworks-gen-service-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.frameworks-gen-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--frameworks-gen-primary);
    transition: height 0.3s ease;
}

.frameworks-gen-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-service-card:hover::before {
    height: 100%;
}

.frameworks-gen-service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(31, 29, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--frameworks-gen-primary);
    font-size: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.frameworks-gen-service-card:hover .frameworks-gen-service-icon {
    background-color: var(--frameworks-gen-primary);
    color: white;
}

.frameworks-gen-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--frameworks-gen-dark);
}

.frameworks-gen-service-card p {
    color: var(--frameworks-gen-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.frameworks-gen-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frameworks-gen-service-features li {
    padding: 0.5rem 0;
    color: var(--frameworks-gen-dark);
    position: relative;
    padding-left: 1.5rem;
}

.frameworks-gen-service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--frameworks-gen-primary);
}

/* Why Laravel Section */
.frameworks-gen-why-laravel {
    padding: 6rem 0;
    background-color: white;
}

.frameworks-gen-why-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.frameworks-gen-why-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-why-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.frameworks-gen-why-image:hover img {
    transform: scale(1.05);
}

.frameworks-gen-why-image-highlight {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--frameworks-gen-secondary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.frameworks-gen-why-points {
    flex: 1;
}

.frameworks-gen-why-card {
    display: flex;
    margin-bottom: 2rem;
    background-color: var(--frameworks-gen-light);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.frameworks-gen-why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.frameworks-gen-why-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(31, 29, 136, 0.2);
    margin-right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    min-width: 50px;
}

.frameworks-gen-why-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--frameworks-gen-dark);
}

.frameworks-gen-why-text p {
    color: var(--frameworks-gen-gray);
    line-height: 1.6;
}

/* Process Section */
.frameworks-gen-process {
    padding: 6rem 0;
    background-color: var(--frameworks-gen-light);
    position: relative;
    overflow: hidden;
}

.frameworks-gen-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/light-wool.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.frameworks-gen-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.frameworks-gen-process-line {
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background-color: var(--frameworks-gen-primary);
    transform: translateX(-50%);
}

.frameworks-gen-process-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
}

.frameworks-gen-process-dot {
    position: absolute;
    left: 50px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--frameworks-gen-primary);
    border-radius: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.frameworks-gen-process-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.frameworks-gen-process-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    z-index: -1;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.03);
}

.frameworks-gen-process-item:hover .frameworks-gen-process-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--frameworks-gen-primary);
}

.frameworks-gen-process-content p {
    color: var(--frameworks-gen-gray);
    line-height: 1.6;
}

/* Case Studies Section */
.frameworks-gen-cases {
    padding: 6rem 0;
    background-color: white;
}

.frameworks-gen-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.frameworks-gen-case-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 350px;
    transition: all 0.3s ease;
}

.frameworks-gen-case-image {
    width: 100%;
    height: 100%;
}

.frameworks-gen-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.frameworks-gen-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 29, 136, 0.9) 0%, rgba(31, 29, 136, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.frameworks-gen-case-card:hover .frameworks-gen-case-overlay {
    opacity: 1;
}

.frameworks-gen-case-card:hover .frameworks-gen-case-image img {
    transform: scale(1.1);
}

.frameworks-gen-case-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.frameworks-gen-case-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.frameworks-gen-case-overlay .frameworks-gen-btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.frameworks-gen-case-card:hover .frameworks-gen-case-overlay h3,
.frameworks-gen-case-card:hover .frameworks-gen-case-overlay p,
.frameworks-gen-case-card:hover .frameworks-gen-case-overlay .frameworks-gen-btn {
    transform: translateY(0);
}

.frameworks-gen-cases-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Technologies Section */
.frameworks-gen-tech {
    padding: 6rem 0;
    background-color: #eff5fb;
}

.frameworks-gen-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.frameworks-gen-tech-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.frameworks-gen-tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-tech-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(31, 29, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--frameworks-gen-primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.frameworks-gen-tech-card:hover .frameworks-gen-tech-icon {
    background-color: var(--frameworks-gen-primary);
    color: white;
}

.frameworks-gen-tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--frameworks-gen-dark);
}

.frameworks-gen-tech-card p {
    color: var(--frameworks-gen-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials Section */
.frameworks-gen-testimonials {
    padding: 6rem 0;
    background-color: var(--frameworks-gen-primary);
    position: relative;
    overflow: hidden;
}

.frameworks-gen-testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--frameworks-gen-secondary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-section-header .frameworks-gen-section-title,
.frameworks-gen-section-header .frameworks-gen-section-subtitle {
    color: #1f1d88;
}

.frameworks-gen-testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.frameworks-gen-testimonial-slide {
    display: none;
    animation: frameworks-gen-fade 1s ease;
}

@keyframes frameworks-gen-fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.frameworks-gen-testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.frameworks-gen-testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--frameworks-gen-light-gray);
    font-size: 3rem;
    z-index: 0;
}

.frameworks-gen-testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--frameworks-gen-gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.frameworks-gen-testimonial-author {
    display: flex;
    align-items: center;
}

.frameworks-gen-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--frameworks-gen-light-gray);
}

.frameworks-gen-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frameworks-gen-testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--frameworks-gen-dark);
}

.frameworks-gen-testimonial-info span {
    font-size: 0.9rem;
    color: var(--frameworks-gen-gray);
}

.frameworks-gen-testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.frameworks-gen-testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.frameworks-gen-testimonial-dot.active {
    background-color: white;
}

/* CTA Section */
.frameworks-gen-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--frameworks-gen-primary) 0%, var(--frameworks-gen-primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.frameworks-gen-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: white;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--frameworks-gen-secondary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
}

.frameworks-gen-cta .frameworks-gen-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.frameworks-gen-cta-content {
    flex: 1;
}

.frameworks-gen-cta-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.frameworks-gen-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.frameworks-gen-cta-image:hover img {
    transform: scale(1.05);
}

.frameworks-gen-cta-image-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--frameworks-gen-secondary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.frameworks-gen-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.frameworks-gen-cta-title span {
    color: var(--frameworks-gen-secondary);
}

.frameworks-gen-cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.frameworks-gen-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.frameworks-gen-cta-buttons .frameworks-gen-btn {
    margin: 0;
}

/* FAQ Section */
.frameworks-gen-faq {
    padding: 6rem 0;
    background-color: white;
}

.frameworks-gen-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.frameworks-gen-faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.frameworks-gen-faq-question {
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.frameworks-gen-faq-question:hover {
    background-color: var(--frameworks-gen-light);
}

.frameworks-gen-faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--frameworks-gen-dark);
}

.frameworks-gen-faq-question i {
    color: var(--frameworks-gen-primary);
    transition: transform 0.3s ease;
}

.frameworks-gen-faq-item.active .frameworks-gen-faq-question i {
    transform: rotate(180deg);
}

.frameworks-gen-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--frameworks-gen-light);
}

.frameworks-gen-faq-item.active .frameworks-gen-faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.frameworks-gen-faq-answer p {
    color: var(--frameworks-gen-gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .frameworks-gen-hero-title {
        font-size: 2.8rem;
    }
    
    .frameworks-gen-why-content {
        flex-direction: column;
    }
    
    .frameworks-gen-cta .frameworks-gen-container {
        flex-direction: column;
    }
    
    .frameworks-gen-cta-content {
        order: 2;
        text-align: center;
    }
    
    .frameworks-gen-cta-image {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .frameworks-gen-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .frameworks-gen-hero-title {
        font-size: 2.2rem;
    }
    
    .frameworks-gen-section-title {
        font-size: 2rem;
    }
    
    .frameworks-gen-hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .frameworks-gen-hero-image {
        position: relative;
        width: 100%;
        margin-top: 3rem;
        transform: none;
        top: auto;
        right: auto;
    }
    
    .frameworks-gen-process-item {
        padding-left: 70px;
    }
    
    .frameworks-gen-process-line {
        left: 35px;
    }
    
    .frameworks-gen-process-dot {
        left: 35px;
    }
}

@media (max-width: 576px) {
    .frameworks-gen-hero-title {
        font-size: 1.8rem;
    }
    
    .frameworks-gen-hero-subtitle,
    .frameworks-gen-section-subtitle {
        font-size: 1rem;
    }
    
    .frameworks-gen-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .frameworks-gen-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .frameworks-gen-stat-number {
        font-size: 2rem;
    }
    
    .frameworks-gen-service-card,
    .frameworks-gen-tech-card {
        padding: 1.5rem;
    }
    
    .frameworks-gen-testimonial-content {
        padding: 2rem;
    }
    
    .frameworks-gen-testimonial-content p {
        font-size: 1rem;
    }
}

.frameworks-gen-faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .frameworks-gen-faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .frameworks-gen-faq-question i {
    transition: transform 0.3s ease;
  }

  .frameworks-gen-faq-question i.rotated {
    transform: rotate(180deg);
  }
  /* Base Styles */
.partner-with-new {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-with-new h1, 
.partner-with-new h2, 
.partner-with-new h3, 
.partner-with-new h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.partner-with-new h1 {
    font-size: 2.5rem;
    color: #1f1d88;
}

.partner-with-new h2 {
    font-size: 2rem;
    color: #1f1d88;
}

.partner-with-new h3 {
    font-size: 1.5rem;
    color: #1f1d88;
}

.partner-with-new p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.partner-with-new a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-with-new ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #000000;
}

.partner-with-new li {
    margin-bottom: 0.5rem;
}

/* Section Header */
.partner-with-new-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-with-new-section-header.dark-bg h2,
.partner-with-new-section-header.dark-bg p {
    color: #1f1d88;
}



/* Buttons */
.partner-with-new-primary-btn {
    display: inline-block;
    background-color: #49a6e8;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.partner-with-new-primary-btn:hover {
    background-color: #3a38a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.partner-with-new-secondary-btn {
    display: inline-block;
    background-color: white;
    color: #1f1d88;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.partner-with-new-secondary-btn:hover {
    background-color: #f0f0ff;
    transform: translateY(-2px);
}

.partner-with-new-text-link {
    color: #1f1d88;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.partner-with-new-text-link:hover {
    color: #3a38a8;
    text-decoration: underline;
}

/* Hero Section */
.partner-with-new-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 50px;
}

.partner-with-new-hero-content {
    flex: 1;
    max-width: 600px;
}

.partner-with-new-hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.partner-with-new-hero-buttons {
    margin-top: 30px;
}

.partner-with-new-hero-image {
    flex: 1;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.partner-with-new-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.partner-with-new-hero-image:hover img {
    transform: scale(1.05);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Benefits Section */
.partner-with-new-benefits {
    padding: 80px 0;
    background-color: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.partner-with-new-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/always-grey.png');
    opacity: 0.03;
    z-index: 0;
}

.partner-with-new-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.partner-with-new-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-with-new-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-with-new-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #f0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-with-new-benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Programs Section */
.partner-with-new-programs {
    padding: 80px 0;
    background-color: #e5ebf9;
    color: white;
}

.partner-with-new-programs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-with-new-program-tabs {
    display: flex;
    background-color: #f0f0ff;
}

.partner-with-new-program-tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.partner-with-new-program-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.partner-with-new-program-tab:hover {
    color: #1f1d88;
    background-color: #e0e0ff;
}

.partner-with-new-program-tab.active {
    color: #1f1d88;
    background-color: white;
}

.partner-with-new-program-tab.active::after {
    background-color: #1f1d88;
}

.partner-with-new-program-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.partner-with-new-program-content.active {
    display: flex;
    gap: 40px;
    align-items: center;
}

.partner-with-new-program-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-with-new-program-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.partner-with-new-program-image:hover img {
    transform: scale(1.05);
}

.partner-with-new-program-details {
    flex: 1;
}

.partner-with-new-program-features {
    margin: 20px 0;
    list-style-type: none;
    padding-left: 0;
}

.partner-with-new-program-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.partner-with-new-program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1f1d88;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Success Stories */
.partner-with-new-success {
    padding: 80px 0;
    background-color: #f9f9ff;
}

.partner-with-new-success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-with-new-story-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-with-new-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-with-new-story-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.partner-with-new-story-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-with-new-story-content p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.partner-with-new-story-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    line-height: 1;
    color: #ddd;
}

.partner-with-new-story-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.partner-with-new-story-author span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

/* Resources Section */
.partner-with-new-resources {
    padding: 80px 0;
    background-color: #f9f9ff;
    color: white;
}

.partner-with-new-resources-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-with-new-resource-tile {
    background: rgb(113 124 190 / 10%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-with-new-resource-tile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-with-new-resource-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-with-new-resource-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    
}

.partner-with-new-resource-tile h3 {
    color: #1f1d88;
}

/* CTA Section */
.partner-with-new-cta {
    padding: 80px 0;
    background-color: #1f1d88;
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-with-new-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partner-with-new-cta h2 {
    color: white;
}

.partner-with-new-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.partner-with-new-cta-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.partner-with-new-faq {
    padding: 80px 0;
    background-color: #eef0f7;
}

.partner-with-new-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.partner-with-new-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.partner-with-new-faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f1d88;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.partner-with-new-faq-question:hover {
    background-color: #f0f0ff;
}

.partner-with-new-faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.partner-with-new-faq-question.active .partner-with-new-faq-icon {
    transform: rotate(45deg);
}

.partner-with-new-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.partner-with-new-faq-question.active + .partner-with-new-faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .partner-with-new-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .partner-with-new-hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .partner-with-new-hero-buttons {
        justify-content: center;
    }
    
    .partner-with-new-program-content.active {
        flex-direction: column;
    }
    
    .partner-with-new-program-image {
        margin-bottom: 30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .partner-with-new-hero {
        padding: 40px 0;
    }
    
    .partner-with-new-hero h1 {
        font-size: 2rem;
    }
    
    .partner-with-new-section-header {
        margin-bottom: 2rem;
    }
    
    .partner-with-new-benefits-grid,
    .partner-with-new-success-stories,
    .partner-with-new-resources-container {
        grid-template-columns: 1fr;
    }
    
    .partner-with-new-program-tabs {
        flex-wrap: wrap;
    }
    
    .partner-with-new-program-tab {
        flex: 1 0 50%;
    }
    
    .partner-with-new-secondary-btn {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .partner-with-new-program-tab {
        flex: 1 0 100%;
        padding: 15px;
    }
    
    .partner-with-new-program-content {
        padding: 20px;
    }
    
    .partner-with-new h1 {
        font-size: 1.8rem;
    }
    
    .partner-with-new h2 {
        font-size: 1.5rem;
    }
    
    .partner-with-new h3 {
        font-size: 1.3rem;
    }
}