/* Base Styles & Variables */
:root {
    --primary-color: #00b22d;      /* Professional green */
    --primary-dark: #1B5E20;       /* Darker shade for hover */
    --secondary-color: #f5bd07;    /* Warm accent color */
    --text-primary: #1f2937;       /* Dark text for readability */
    --text-secondary: #4b5563;     /* Softer text for secondary content */
    --background-light: #f8fafc;   /* Light background */
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --shadow-glow: 0 0 15px rgba(56, 142, 60, 0.3);
    /* Add new decorative variables */
    --gradient-success: linear-gradient(135deg, #00b22d 0%, #4CAF50 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --glow-primary: 0 0 20px rgba(0, 178, 45, 0.15);
    --glow-success: 0 0 30px rgba(76, 175, 80, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Set fixed height */
    z-index: 1000;
    background: var(--white);
    padding: 0;  /* Remove padding since we have fixed height */
    border-bottom: 1px solid rgba(56, 142, 60, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    height: 100%; /* Make container full height */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    height: 100%; /* Make logo container full height */
}

.logo img {
    height: 80px; /* Adjust logo size to fit header */
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: 0.3s ease;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .navbar {
        height: 60px; /* Smaller height on mobile */
    }

    .logo img {
        height: 40px; /* Smaller logo on mobile */
    }
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    /* Enhanced Section Headers */
    position: relative;
    padding: 2rem 0;
}

.section-header::before {
    content: '✦';
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-success);
    border-radius: 3px;
    box-shadow: var(--glow-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background: linear-gradient(to bottom, rgb(182 245 211 / 95%), rgba(248,250,252,0.95));
    position: relative;
    overflow: hidden;
}

/* Tech Circle Background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background-image: url('./assets/tech-circle.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
    animation: rotate 120s linear infinite;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Image Container */
.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.image-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.circle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #9ff105 5%, #00b22d 100%);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 178, 45, 0.2);
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s ease;
    z-index: 2;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Social Icons */
.social-icons-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    transform-style: preserve-3d;
}

.social-icons-circle .icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    transform: translateZ(30px);
}

.icon:hover {
    transform: translateZ(50px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Rotation Animation */
@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Add image container placeholder */
.image-container::before {
    content: '';
    display: block;
    padding-top: 100%; /* Maintain aspect ratio */
}

/* Social Icons */
.social-icons-circle .icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Social Icons Positioning */
.social-icons-circle .facebook {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: #1877F2;
}

.social-icons-circle .youtube {
    top: 15%;
    right: -22px;
    color: #FF0000;
}

.social-icons-circle .instagram {
    bottom: 15%;
    right: -22px;
    color: white;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons-circle .twitter {
    bottom: 15%;
    left: -22px;
    color: #1DA1F2;
}

.social-icons-circle .tiktok {
    top: 15%;
    left: -22px;
    color: #000000;
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.stats-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stats-badge.growth {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.stats-badge.clients {
    top: 10%;
    right: -22px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-container {
        width: 300px;
        height: 300px;
    }

    .social-icons-circle .icon {
        width: 35px;
        height: 35px;
    }

    .stats-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 178, 45, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--primary-color);
}

/* Hero Text Enhancements */
.hero-text {
    padding-right: 2rem;
    animation: fadeInUp 1s ease-out;
}

.brand-name {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.brand-name .highlight {
    color: var(--primary-color);
    display: block;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.brand-name .tagline {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 178, 45, 0.2);
}

.secondary-btn {
    background: white;
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 178, 45, 0.3);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Social Icons Enhancement */
.social-icons-circle .icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.social-icons-circle .icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.icon .tooltip {
    position: absolute;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Stats Badges Enhancement */
.stats-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.stats-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stats-badge.growth {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
}

.stats-badge.clients {
    top: 10%;
    right: 0;
}

.stats-badge i {
    color: var(--primary-color);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Responsive Enhancement */
@media (max-width: 768px) {
    .hero {
        padding: 100px 1rem 2rem;
    }

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

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

    .hero-badge {
        justify-content: center;
    }

    .brand-name {
        font-size: 3rem;
    }

    .brand-name .tagline {
        font-size: 2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .social-icons-circle .icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .stats-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-scroll {
        display: none;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }

    .brand-name {
        font-size: 3.5rem;
    }

    .image-container {
        width: 350px;
        height: 350px;
    }
}

/* Hero Right Side */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.main-illustration {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 1s ease-out;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-success);
}

.code-element {
    top: 20%;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.design-element {
    top: 50%;
    right: 0;
    animation: float 6s ease-in-out infinite 1s;
}

.marketing-element {
    bottom: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-item {
    flex: 0 0 300px;
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .service-item {
        flex: 0 0 85%;
        min-width: 260px;
        padding: 1.5rem;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .service-item p {
        font-size: 0.875rem;
    }
}

/* Scroll Indicators */
.services::before,
.services::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.services::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.services::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}


/* Work/Portfolio Section Enhancement */
.portfolio {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background: var(--background-light);
    color: var(--text-secondary);
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.portfolio-grid::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 260px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: var(--white);
}

.portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 142, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1rem;
    background: var(--white);
}

.portfolio-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.portfolio-content p {
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin: 0;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--background-light);
    color: var(--text-secondary);
    border-radius: 12px;
}

/* Portfolio Container and Scroll Buttons */
.portfolio-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin: 2rem 0;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-grid::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.scroll-btn.visible {
    opacity: 1;
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* Hide scroll buttons on mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
    
    .portfolio-container {
        padding: 0 1rem;
    }
}

/* Team Section Enhancement */
.team {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.team-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin: 2rem 0;
    overflow: hidden;
}

.team-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.team-member {
    flex: 0 0 220px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.position {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Team Scroll Buttons */
.team-container .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-container .scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.team-container .scroll-btn.left {
    left: 0;
}

.team-container .scroll-btn.right {
    right: 0;
}

@media (max-width: 768px) {
    .team {
        padding: 3rem 0;
    }

    .team-grid {
        padding: 0.5rem 1rem;
    }

    .team-member {
        flex: 0 0 180px;
    }

    .member-image {
        height: 180px;
    }

    .member-info {
        padding: 0.75rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 142, 60, 0.1);
    border-radius: 50%;
}

.card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control,
.service-select-container select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--background-light);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: transparent;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--background-light);
    padding: 0 0.25rem;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label,
select:focus ~ label,
select:not(:invalid) ~ label {
    transform: translateY(-1.4rem) translateX(-0.25rem) scale(0.85);
    background: var(--white);
    color: var(--primary-color);
}

.form-control:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--white);
    outline: none;
}

.service-select-container {
    position: relative;
}

select {
    appearance: none;
    cursor: pointer;
}

.service-select-container::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-select-container:focus-within::after {
    color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-card i {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f0 100%);
    padding: 4rem 0 0;
    color: var(--text-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(56, 142, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-links a.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(56, 142, 60, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

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

    .contact-info li {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-highlights {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        background: var(--white);
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 1rem 3rem; /* Adjust padding for mobile */
    }

    .logo {
        height: 50px;
    }

    .logo img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: rgba(56, 142, 60, 0.1);
        border-radius: 8px;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-primary);
        background: rgba(56, 142, 60, 0.05);
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: rgba(56, 142, 60, 0.1);
        color: var(--primary-color);
    }

    .nav-links a::after {
        display: none;
    }

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

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-text {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 8px;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-primary);
        background: rgba(56, 142, 60, 0.05);
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: rgba(56, 142, 60, 0.1);
        color: var(--primary-color);
    }
}

/* Hero Section Enhancement */
.hero-right {
    position: relative;
}

.hero-illustration {
    position: relative;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.float-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 1rem 3rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-right {
        order: -1;
    }
}

/* Add smooth transition for dark mode if implemented */
.hero-image, .floating-card {
    transition: all 0.3s ease;
}

/* Add hover effects for the floating cards */
.floating-card:hover {
    transform: translateZ(90px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.floating-card:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.floating-card i {
    transition: transform 0.3s ease;
}

/* Enhanced image loading */
.hero-image img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image img.loaded {
    opacity: 1;
}

/* Pricing Section Enhancement */
.pricing {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Plan Card */
.pricing-plan {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Plan Tag */
.plan-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #00b22d, #008f24);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 178, 45, 0.2);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 178, 45, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.75rem 0;
}

/* Price Display */
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin: 1.5rem 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1rem;
    padding-top: 0.25rem;
}

.feature-content {
    flex: 1;
}

.feature-main {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-sub {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.feature-description {
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Button */
.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 178, 45, 0.2);
}

/* Featured Plan */
.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 178, 45, 0.15);
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan {
        padding: 1.5rem;
    }
    
    .featured {
        transform: none;
    }
}

/* Notification System */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.success {
    border-left: 4px solid var(--primary-color);
}

.notification.error {
    border-left: 4px solid #dc2626;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification i {
    font-size: 1.25rem;
}

.notification.success i {
    color: var(--primary-color);
}

.notification.error i {
    color: #dc2626;
}

/* Submit Button States */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Button Enhancements */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.scroll-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

/* Achievement Section Enhancements */
.achievements {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.achievements::-webkit-scrollbar {
    display: none;
}

.achievement-item {
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.achievement-item.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Additional Mobile Responsiveness */
@media (max-width: 768px) {
    .achievements {
        gap: 1rem;
        padding: 1rem 0;
    }

    .achievement-item {
        min-width: 160px;
        padding: 1.5rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .notification {
        max-width: none;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 1;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* Add hover effect */
.brand-name:hover .fsp {
    transform: translateX(-0.25rem);
}

.brand-name:hover .team {
    transform: translateX(0.25rem) translateY(-0.25rem);
}

.brand-name .fsp,
.brand-name .team {
    transition: transform 0.3s ease;
}

/* Additional Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.plan-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.pricing-plan:hover .plan-category {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--background-light);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-category {
    display: none;
}

.pricing-category.active {
    display: block;
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
    }
}

/* Achievement Section Enhancements */
.stats {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid::-webkit-scrollbar {
    display: none;
}

.stat-item {
    flex: 0 0 250px;
    min-width: 250px;
    scroll-snap-align: start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .stat-item {
        flex: 0 0 85%;
        min-width: 220px;
        padding: 1.25rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }
}

/* Scroll Indicators */
.stats::before,
.stats::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.stats::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.stats::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}

.trust-badges, .certification-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 1rem auto;
    width: 100%;
    max-width: 100%;
}

.trust-badge, .certification-badge {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 100%;
    margin: 0.5rem;
}

.trust-badge:hover, .certification-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
}

.trust-badge i, .certification-badge i {
    font-size: 1.1rem;
    color: var(--primary-color);
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-badge span, .certification-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .trust-badges, .certification-badges {
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-badge, .certification-badge {
        padding: 0.6rem 1rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.review-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.review-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 300px;
    min-width: 300px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    /* Prevent image duplication */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.reviewer-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    /* Prevent image duplication */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.reviewer-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 3rem 0;
    }

    .review-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .review-card {
        flex: 0 0 85%;
        min-width: 260px;
        padding: 1.25rem;
    }

    .reviewer-image {
        width: 40px;
        height: 40px;
    }

    .reviewer-info h4 {
        font-size: 0.9375rem;
    }

    .reviewer-info p {
        font-size: 0.8125rem;
    }

    .review-rating i {
        font-size: 0.8125rem;
    }

    .review-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Scroll Indicators */
.reviews::before,
.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.reviews::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.reviews::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}

/* Recognition Section */
.recognition {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.recognition-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.recognition-grid::-webkit-scrollbar {
    display: none;
}

.recognition-item {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(56, 142, 60, 0.1);
    transition: all 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.recognition-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.recognition-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.recognition-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.recognition-year {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recognition {
        padding: 3rem 0;
    }

    .recognition-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .recognition-item {
        flex: 0 0 85%;
        min-width: 240px;
        padding: 1.5rem;
    }

    .recognition-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .recognition-icon i {
        font-size: 1.5rem;
    }
}

/* Certifications Section */
.certifications {
    padding: 3rem 2rem;
    background: var(--white);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.5rem;
}

.certification-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 178, 45, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.certification-icon i {
    font-size: 1.5rem;
}

.certification-content {
    text-align: left;
}

.certification-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.certification-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .certifications-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .certification-card {
        width: 100%;
    }
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-links a {
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-links a {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric i {
    color: var(--primary-color);
    font-size: 1rem;
}

.metric span {
    font-size: 0.813rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing Toggle Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Comparison Modal Styles */
.comparison-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.comparison-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

/* Popular Plan Styles */
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Price Animation */
@keyframes priceFade {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Feature Filter Styles */
.feature-filter {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.clear-filters {
    font-size: 0.875rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Plan Recommender Styles */
.pricing-help {
    text-align: center;
    margin: 2rem 0;
}

.help-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.recommender-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.recommender-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommender-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question select,
.feature-checkboxes {
    margin-top: 0.5rem;
}

.recommendation-result {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.recommendation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.recommendation-content i {
    font-size: 3rem;
    color: var(--primary-color);
}

.view-plan-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.view-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Currency Selector Styles */
.currency-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.currency-selector select {
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
}

/* FAQ Styles */
.pricing-faq {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
}

/* Custom Plan Builder Styles */
.custom-plan-builder {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.custom-plan-btn {
    padding: 1rem 2rem;
    background: var(--gradient-success);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.custom-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.builder-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.builder-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
}

.builder-section {
    margin-bottom: 2rem;
}

.feature-options {
    display: grid;
    gap: 1rem;
}

.feature-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-option:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.feature-option input {
    margin-right: 1rem;
}

.feature-option .price {
    color: var(--primary-color);
    font-weight: 500;
}

.total-section {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--gradient-card);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.create-plan-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-success);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-primary);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn, .signup-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.signup-btn {
    color: var(--white);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.login-btn:hover {
    background: rgba(0, 178, 45, 0.1);
}

.signup-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}


/* Auth Pages Styles login and signup */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(159, 241, 5, 0.1), rgba(0, 178, 45, 0.1));
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.auth-box h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 178, 45, 0.1);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
}

.form-options {
    margin-bottom: 1.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    background: var(--primary-dark);
}

.social-auth {
    margin-top: 2rem;
    text-align: center;
}

.social-auth p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
}

.social-auth p::before,
.social-auth p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.social-auth p::before {
    left: 0;
}

.social-auth p::after {
    right: 0;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.input-group input.error {
    border-color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-box {
        padding: 2rem 1.5rem;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }
}

/* Additional Auth Styles */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.social-btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.social-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-switch {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* About Text Section */
.about-text h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-stats .stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-stats .stat i {
    font-size: 2rem;
    color: #7AB522;
}

.stat-text h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Features Grid */
.about-features {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-features h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: #7AB522;
    margin-top: 5px;
}

.feature-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Core Values Section */
.about-values {
    text-align: center;
    margin-top: 60px;
}

.about-values h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: #7AB522;
    margin-bottom: 20px;
}

.value-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .feature {
        padding: 15px;
    }

    .value-item {
        padding: 20px 15px;
    }
}

/* Payment Page Styles */
.payment-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(159, 241, 5, 0.1), rgba(0, 178, 45, 0.1));
    padding: 2rem;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.payment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.payment-summary {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
}

.payment-summary h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.selected-plan {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.plan-details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.plan-details h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-features-summary {
    list-style: none;
    padding: 0;
}

.plan-features-summary li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.plan-features-summary i {
    color: var(--primary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.payment-method img.payment-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.payment-method:hover {
    border-color: var(--primary-color);
    background: rgba(0, 178, 45, 0.05);
}

.payment-method.active {
    border-color: var(--primary-color);
    background: rgba(0, 178, 45, 0.1);
    color: var(--primary-color);
}

/* Mobile Payment Methods Section */
.mobile-payment-header {
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .payment-methods,
    .mobile-methods {
        grid-template-columns: 1fr;
    }

    .payment-method {
        padding: 0.75rem;
    }
}

/* Update Payment Method Icon Styles */
.payment-method svg.payment-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.payment-method i,
.payment-method svg {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.payment-method:hover i,
.payment-method:hover svg {
    transform: scale(1.1);
}

.payment-method.active i,
.payment-method.active svg {
    transform: scale(1.1);
}

/* Add specific colors for payment methods */
.payment-method[data-method="payoneer"] svg {
    color: #FF4800;
}

.payment-method[data-method="wise"] svg {
    color: #00B9FF;
}

.payment-method[data-method="binance"] svg {
    color: #F3BA2F;
}

.payment-method[data-method="bkash"] svg {
    color: #E2136E;
}

.payment-method[data-method="nagad"] svg {
    color: #F15A29;
}

/* Payment Form Content Styles */
.payment-form-content {
    display: none;
    margin-top: 2rem;
}

.payment-form-content.active {
    display: block;
}

/* Make bKash form visible by default */
#bkashForm {
    display: block;
}

/* Payment Redirect Info */
.payment-redirect-info {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
}

.payment-redirect-info i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-redirect-info h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Account Details */
.account-details {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.detail-item .label {
    color: var(--text-secondary);
}

.detail-item .value {
    font-weight: 500;
}

/* Crypto Payment */
.crypto-payment {
    text-align: center;
}

.qr-code {
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.qr-code img {
    width: 100%;
    height: auto;
}

.wallet-address {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.address-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.address-copy code {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: monospace;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

/* Mobile Payment */
.mobile-payment {
    max-width: 400px;
    margin: 0 auto;
}

.merchant-info {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    color: var(--text-secondary);
}

.merchant-info p {
    font-weight: 500;
}

/* Other Payment Option */
.other-payment-option {
    margin-top: 1rem;
    text-align: center;
}

.other-payment-btn {
    background: none;
    border: 1px dashed var(--text-secondary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    font-size: 0.95rem;
}

.other-payment-btn i {
    font-size: 1.1rem;
}

.other-payment-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 178, 45, 0.05);
}

/* Payment Message Box */
.payment-message-box {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.payment-message-box h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.payment-message-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.payment-message-box textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.payment-message-box textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Update Payment Methods Grid */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Add Bybit color */
.payment-method[data-method="bybit"] svg {
    color: #F7A600;
}

/* bKash Payment Styles */
.payment-number {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
}

.payment-number p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.payment-number .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.number-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.account-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* File Upload Styles */
.file-upload {
    position: relative;
    margin-top: 0.5rem;
}

.file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--background-light);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 178, 45, 0.05);
}

.file-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.file-preview {
    margin-top: 1rem;
    display: none;
}

.file-preview img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.optional {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
    font-weight: normal;
}

/* Payment Form Content Styles */
.payment-form-content {
    display: none;
}

.payment-form-content.active {
    display: block;
}

/* Floating Chat Button - Stylish Round Button */
#TawkChatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #4CAF50; /* Green button */
    color: white;
    border-radius: 50%; /* Circular shape */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Hover Effect for Button */
#TawkChatButton:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    background-color: #45a049; /* Darker green on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Tawk.to Chat Widget Container */
#TawkChat {
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 9998;
    border-radius: 10px; /* Rounded corners for the widget */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    transition: transform 0.3s ease;
    transform: translateY(100%); /* Initially hidden, slide from bottom */
}

/* Tawk.to Chat Widget Iframe */
#TawkChat iframe {
    border: none;
    width: 400px !important;
    height: 600px !important;
    border-radius: 10px; /* Round the iframe corners */
}

/* Show the widget with a slide-in animation */
#TawkChat.show {
    transform: translateY(0);
}

/* Optional: Tawk widget minimized style */
#TawkChat.minimized {
    transform: translateY(100%); /* Minimized state (hidden below screen) */
    transition: transform 0.3s ease;
}

/* Custom close button for the chat widget */
#TawkChat .close-chat-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#TawkChat .close-chat-btn:hover {
    background-color: #f1f1f1;
    transform: scale(1.1);
}
