/* Portfolio Page Styles - Clean Version */

/* Portfolio Header Section */
.portfolio-header {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.agency-label {
    color: #0066FF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.main-heading {
    font-size: 2rem;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 600;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.consultation-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.consultation-btn i {
    font-size: 18px;
}

/* Partner Badges */
.partner-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.badge span {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

/* Tech Stack Background Animation */
.tech-stack-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.tech-logo {
    position: absolute;
    font-size: 3rem;
    color: #64748b;
    opacity: 0.4;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 1;
    transition: all 0.3s ease;
    will-change: transform;
}

.tech-logo:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.tech-logo-1 {
    top: 15%;
    left: 5%;
    animation-name: float-1;
    color: #61dafb;
}

.tech-logo-2 {
    top: 25%;
    right: 5%;
    animation-name: float-2;
    animation-delay: -2s;
    color: #ff2d20;
}

.tech-logo-3 {
    top: 45%;
    left: 2%;
    animation-name: float-3;
    animation-delay: -4s;
    color: #21759b;
}

.tech-logo-4 {
    top: 35%;
    right: 3%;
    animation-name: float-4;
    animation-delay: -6s;
    color: #f7df1e;
}

.tech-logo-5 {
    top: 65%;
    left: 8%;
    animation-name: float-5;
    animation-delay: -8s;
    color: #777bb4;
}

.tech-logo-6 {
    top: 55%;
    right: 10%;
    animation-name: float-6;
    animation-delay: -10s;
    color: #339933;
}

.tech-logo-7 {
    top: 75%;
    left: 12%;
    animation-name: float-7;
    animation-delay: -12s;
    color: #e34f26;
}

.tech-logo-8 {
    top: 20%;
    left: 15%;
    animation-name: float-8;
    animation-delay: -14s;
    color: #1572b6;
}

.tech-logo-9 {
    top: 80%;
    right: 12%;
    animation-name: float-9;
    animation-delay: -16s;
    color: #3776ab;
}

.tech-logo-10 {
    top: 40%;
    left: 18%;
    animation-name: float-10;
    animation-delay: -18s;
    color: #f24e1e;
}

.tech-logo-11 {
    top: 60%;
    right: 15%;
    animation-name: float-11;
    animation-delay: -20s;
    color: #333333;
    font-size: 2.5rem;
}

.tech-logo-12 {
    top: 30%;
    right: 18%;
    animation-name: float-12;
    animation-delay: -22s;
    color: #7952b3;
    font-size: 2.8rem;
}

/* Enhanced Floating Animations */
@keyframes float-1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(50px, -40px) rotate(90deg); }
    50% { transform: translate(-30px, -60px) rotate(180deg); }
    75% { transform: translate(60px, -20px) rotate(270deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes float-2 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-50px, 30px) rotate(-90deg); }
    50% { transform: translate(40px, 50px) rotate(-180deg); }
    75% { transform: translate(-40px, 20px) rotate(-270deg); }
    100% { transform: translate(0px, 0px) rotate(-360deg); }
}

@keyframes float-3 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(40px, 50px) rotate(120deg); }
    50% { transform: translate(-50px, 30px) rotate(240deg); }
    75% { transform: translate(30px, -40px) rotate(300deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes float-4 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-40px, -30px) rotate(-120deg); }
    50% { transform: translate(60px, -50px) rotate(-240deg); }
    75% { transform: translate(-30px, 40px) rotate(-300deg); }
    100% { transform: translate(0px, 0px) rotate(-360deg); }
}

@keyframes float-5 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(35px, -45px) rotate(150deg); }
    50% { transform: translate(-40px, -35px) rotate(300deg); }
    75% { transform: translate(45px, 35px) rotate(450deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes float-6 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-45px, 35px) rotate(-150deg); }
    50% { transform: translate(40px, 45px) rotate(-300deg); }
    75% { transform: translate(-35px, -45px) rotate(-450deg); }
    100% { transform: translate(0px, 0px) rotate(-360deg); }
}

@keyframes float-7 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(55px, -25px) rotate(180deg); }
    50% { transform: translate(-25px, -55px) rotate(360deg); }
    75% { transform: translate(25px, 55px) rotate(540deg); }
    100% { transform: translate(0px, 0px) rotate(720deg); }
}

@keyframes float-8 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-35px, 45px) rotate(-180deg); }
    50% { transform: translate(35px, 25px) rotate(-360deg); }
    75% { transform: translate(-45px, -35px) rotate(-540deg); }
    100% { transform: translate(0px, 0px) rotate(-720deg); }
}

@keyframes float-9 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(25px, -55px) rotate(90deg); }
    50% { transform: translate(-55px, -25px) rotate(180deg); }
    75% { transform: translate(55px, 25px) rotate(270deg); }
    100% { transform: translate(0px, 0px) rotate(360deg); }
}

@keyframes float-10 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-25px, 35px) rotate(-90deg); }
    50% { transform: translate(45px, -35px) rotate(-180deg); }
    75% { transform: translate(-35px, -25px) rotate(-270deg); }
    100% { transform: translate(0px, 0px) rotate(-360deg); }
}

@keyframes float-11 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(40px, 40px) rotate(45deg); }
    50% { transform: translate(-40px, 40px) rotate(90deg); }
    75% { transform: translate(-40px, -40px) rotate(135deg); }
    100% { transform: translate(0px, 0px) rotate(180deg); }
}

@keyframes float-12 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(-30px, -40px) rotate(-45deg); }
    50% { transform: translate(30px, -40px) rotate(-90deg); }
    75% { transform: translate(30px, 40px) rotate(-135deg); }
    100% { transform: translate(0px, 0px) rotate(-180deg); }
}

/* Portfolio Clients Logo Slider */
.portfolio-clients {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.portfolio-logo-slider {
    overflow: hidden;
    width: 100%;
}

.portfolio-logo-track {
    display: flex;
    animation: slide 15s linear infinite;
}

.portfolio-logo-item {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.portfolio-logo-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.portfolio-logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Portfolio Projects Grid */
.portfolio-projects {
    padding: 40px 0;
    background: #f8f9fa;
}

.portfolio-title {
    text-align: center;
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #0066FF;
    border-radius: 30px;
    background: transparent;
    color: #0066FF;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0066FF;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 370px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-name {
    color: #0066FF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.portfolio-subtitle {
    color: #1a202c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.portfolio-description {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-portfolio {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-portfolio:hover {
    color: #0052cc;
}

.view-portfolio:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .partner-badges {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-header {
        padding: 80px 0 40px;
    }

    .main-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .consultation-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .partner-badges {
        gap: 20px;
        margin-top: 20px;
    }

    .badge span {
        font-size: 12px;
    }
    
    .portfolio-title {
        font-size: 1.75rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .partner-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin: 2px;
    }
    
    .portfolio-filters {
        margin-bottom: 12px;
        gap: 5px;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    /* Mobile optimizations for portfolio-clients */
    .portfolio-clients {
        padding: 30px 0;
    }
    
    .portfolio-logo-track {
        animation: slide 5s linear infinite;
    }
    
    .portfolio-logo-item {
        flex: 0 0 120px;
        height: 60px;
        padding: 0 10px;
    }
    
    .portfolio-logo-item img {
        max-height: 45px;
    }

    .portfolio-item {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .portfolio-item h2 {
        font-size: 1.2rem;
    }

    .portfolio-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.5rem;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .portfolio-title {
        font-size: 1.5rem;
        padding: 0 20px;
        margin-bottom: 10px;
    }
    
    .consultation-btn {
        font-size: 14px;
    }
    
    .portfolio-content {
        padding: 15px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-subtitle {
        font-size: 20px;
    }
    
    /* Further mobile optimizations for portfolio-clients */
    .portfolio-clients {
        padding: 30px 0;
    }
    
    .portfolio-logo-track {
        animation: slide 4s linear infinite;
    }
    
    .portfolio-logo-item {
        flex: 0 0 100px;
        height: 50px;
        padding: 0 8px;
    }
    
    .portfolio-logo-item img {
        max-height: 35px;
    }
}

/* Modern Pricing Section Styles */
.pricing-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(30,74,115,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 2.25rem;
    color: #1e4a73;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 74, 115, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(30,74,115,0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 1);
    border: 2px solid #1e4a73;
    position: relative;
}

.pricing-card.featured::after {
    display: none;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(30, 74, 115, 0.2);
}

.pricing-header-card {
    padding: 50px 30px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(30, 74, 115, 0.1);
}

.package-name {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.4rem;
    color: #64748b;
    margin-right: 8px;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: #1e4a73;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.package-duration {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.pricing-features {
    padding: 40px 30px;
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #475569;
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 74, 115, 0.1);
    font-weight: 400;
}

.feature-label {
    font-weight: 500;
    color: #1e293b;
}

.feature-rating {
    display: flex;
    gap: 2px;
}

.feature-rating .star {
    color: #e5e7eb;
    font-size: 16px;
    font-weight: bold;
}

.feature-rating .star.filled {
    color: #1e4a73;
}

.feature-value {
    color: #1e4a73;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    font-size: 0.9rem;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 30px;
    border-top: 1px solid rgba(30, 74, 115, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

.tech-stack-title {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.tech-stack-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-logo-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.tech-logo-small:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.pricing-action {
    padding: 0 30px 50px;
    margin-top: auto;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 28px;
    background: rgba(30, 74, 115, 0.08);
    color: #1e4a73;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(30, 74, 115, 0.2);
}

.pricing-btn:hover {
    background: rgba(30, 74, 115, 0.15);
    transform: translateY(-2px);
    color: #1e4a73;
}

.pricing-btn.featured-btn {
    background: #ff6b35;
    border: 1px solid #ff6b35;
    color: #ffffff;
}

.pricing-btn.featured-btn:hover {
    background: #e55a2b;
    color: #ffffff;
}

.pricing-btn i {
    font-size: 1.2rem;
}

.pricing-footer {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #475569;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    border: 1px solid rgba(30, 74, 115, 0.2);
    font-weight: 500;
}

.pricing-note i {
    color: #ff6b35;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 30px;
        padding: 0 20px;
    }
    
    .pricing-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 800px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }

    .portfolio-item {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .portfolio-item h2 {
        font-size: 1.2rem;
    }

    .portfolio-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-header-card {
        padding: 30px 20px 20px;
    }
    
    .pricing-features {
        padding: 20px;
    }
    
    .pricing-action {
        padding: 0 20px 30px;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .pricing-note {
        margin: 0 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Website Helps Section */
.website-helps {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.website-helps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 74, 115, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.website-helps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.website-helps-content {
    max-width: 600px;
}

.website-helps-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e4a73;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e4a73 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.website-helps-content .main-text {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 400;
}

.website-helps-content .secondary-text {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.website-helps-content .consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.website-helps-content .consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f39c12 0%, #ff6b35 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.website-helps-content .consultation-btn:hover::before {
    left: 0;
}

.website-helps-content .consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.website-helps-content .consultation-btn i {
    font-size: 1.2rem;
}

/* Animation Container */
.website-helps-animation {
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(30, 74, 115, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-helps-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: 1;
}

.website-helps-animation::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

#websiteAnimation {
    width: 300px;
    height: 300px;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .website-helps-grid {
        gap: 60px;
    }
    
    .website-helps-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .website-helps {
        padding: 20px 0;
    }

    .website-helps-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
        /* Ubah urutan untuk mobile - animation di atas */
        grid-template-areas: 
            "animation"
            "content";
    }
    
    .website-helps-content {
        grid-area: content;
        max-width: none;
    }
    
    .website-helps-animation {
        grid-area: animation;
        background: transparent;
        box-shadow: none;
        min-height: 140px;
        max-width: 220px;
        margin: 0 auto;
    }
    
    /* Hide decorative elements on mobile */
    .website-helps-animation::before {
        display: none;
    }
    
    .website-helps-animation::after {
        display: none;
    }
    
    #websiteAnimation::before {
        display: none;
    }

    .website-helps-content h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .website-helps-content .main-text {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .website-helps-content .secondary-text {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .portfolio-item {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .portfolio-item h2 {
        font-size: 1.2rem;
    }

    .portfolio-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .website-helps {
        padding: 15px 0;
    }

    .website-helps-grid {
        padding: 0 10px;
        gap: 5px;
    }
    
    .website-helps-content h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .website-helps-content .main-text,
    .website-helps-content .secondary-text {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .website-helps-animation {
        min-height: 120px;
        max-width: 180px;
    }
    
    .website-helps-content .consultation-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .website-helps-animation {
        max-width: 300px;
        min-height: 300px;
    }
}

/* Slide Navigation */
.slide-navigation {
    display: none;
}

.slide-nav-btn {
    display: none;
}

.slide-dots {
    display: none;
}

.slide-dot {
    display: none;
}

/* Auto-slide progress indicator */
.slide-progress {
    display: none;
}

.slide-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1e4a73, #ff6b35);
    border-radius: 2px;
    width: 0%;
    animation: slideProgress 5s linear infinite;
}

@keyframes slideProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Add decorative elements */
#websiteAnimation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#websiteAnimation::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* Responsive Design */

/* Fallback Animations */
.fallback-animation {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Website Animation */
.website-animation {
    flex-direction: column;
    gap: 30px;
}

.laptop {
    width: 200px;
    height: 120px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 10px 10px 5px 5px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.laptop-screen {
    width: 160px;
    height: 90px;
    background: linear-gradient(145deg, #1e4a73, #2980b9);
    border-radius: 5px;
    margin: 10px auto 0;
    position: relative;
    overflow: hidden;
}

.website-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(30, 74, 115, 0.1));
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.website-preview::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 15%;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 3px;
    animation: slideInLeft 2s ease-in-out infinite;
}

.website-preview::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 10%;
    width: 60%;
    height: 8%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    animation: slideInLeft 2s ease-in-out infinite 0.5s;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    color: #ff6b35;
    font-size: 1.5rem;
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 3s;
}

/* Transform Animation */
.gear-system {
    position: relative;
    width: 200px;
    height: 200px;
}

.gear-system i {
    position: absolute;
    color: #1e4a73;
    font-size: 3rem;
}

.gear-1 {
    top: 20%;
    left: 20%;
    animation: rotateClockwise 3s linear infinite;
}

.gear-2 {
    top: 40%;
    right: 20%;
    font-size: 2.5rem;
    color: #ff6b35;
    animation: rotateCounterClockwise 2.5s linear infinite;
}

.gear-3 {
    bottom: 20%;
    left: 40%;
    font-size: 2rem;
    animation: rotateClockwise 2s linear infinite;
}

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.data-point {
    width: 15px;
    height: 15px;
    background: #ff6b35;
    border-radius: 50%;
    animation: dataFlow 2s ease-in-out infinite;
}

.data-point:nth-child(2) {
    animation-delay: 0.5s;
}

.data-point:nth-child(3) {
    animation-delay: 1s;
}

/* Analytics Animation */
.chart-container {
    width: 250px;
    height
    width: 100%;
    height: 100%;
}

.trend-line polyline {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes growBar {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(1); }
}

@keyframes drawLine {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}
