/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.5px;
}

h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-weight: 700;
    letter-spacing: 0.8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: #ffffff;
    color: #000000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
    color: #ffffff;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #01bf63;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #7ed957;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #01bf63;
    font-weight: 700;
    letter-spacing: 0.8px;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
}

/* About Section */
#about {
    background-color: #f9f9f9;
}

/* UploadOn Section */
#uploadon {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.uploadon-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 191, 99, 0.1);
}

.uploadon-icon {
    text-align: center;
    position: relative;
}

.uploadon-icon i {
    font-size: 4rem;
    color: #01bf63;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.uploadon-icon i:first-child:hover {
    color: #7ed957;
    transform: scale(1.1);
}

.uploadon-icon i:last-child:hover {
    color: #7ed957;
    transform: scale(1.1);
}

.uploadon-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #01bf63;
}

/* Ensure UploadOn section h2 aligns with other section h2 elements */
#uploadon .container > h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #01bf63;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.uploadon-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    color: #1a1a1a;
}

.uploadon-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.uploadon-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.uploadon-features li i {
    margin-right: 15px;
    color: #7ed957;
    width: 20px;
    font-size: 1.1rem;
}

.uploadon-cta {
    display: inline-block;
    background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(1, 191, 99, 0.3);
    border: none;
    text-align: center;
}

.uploadon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(1, 191, 99, 0.4);
    background: linear-gradient(135deg, #7ed957 0%, #01bf63 100%);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(1, 191, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 191, 99, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(1, 191, 99, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(1, 191, 99, 0.4);
}

.service-card h3 {
    color: #01bf63;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 1.3rem;
}

.service-card p {
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-details h3,
.social-links h3 {
    color: #01bf63;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #01bf63;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #01bf63;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #01bf63;
}

.contact-details p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(1, 191, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-icon:hover::before {
    width: 120%;
    height: 120%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(1, 191, 99, 0.4);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #1a1a1a;
}

.policy-content h3 {
    color: #01bf63;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.policy-content p {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.6;
}

.policy-content a {
    color: #01bf63;
    text-decoration: none;
    font-weight: 400;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #01bf63 0%, #7ed957 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    section h2 {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .uploadon-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 30px;
    }

    .uploadon-icon {
        margin-bottom: 20px;
    }

    .uploadon-icon i {
        font-size: 3rem;
        margin: 0 8px;
    }

    .uploadon-text h2 {
        font-size: 2.2rem;
    }

    .uploadon-subtitle {
        font-size: 1.1rem;
    }

    .uploadon-features li {
        justify-content: center;
        font-size: 1rem;
    }

    .uploadon-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .policy-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    nav ul li {
        margin: 0 5px 5px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        letter-spacing: 0.6px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    footer ul li {
        margin: 0 5px;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .uploadon-content {
        padding: 30px 20px;
    }

    .uploadon-text h2 {
        font-size: 1.8rem;
    }

    .uploadon-icon i {
        font-size: 2.5rem;
        margin: 0 5px;
    }

    .uploadon-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}