:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Nav */
header {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}

.main-nav ul li {
    margin: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.dropdown-content a {
    color: #fff !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: none;
        padding-left: 20px;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

.get-started-btn a {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.get-started-btn a:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
}

@media (max-width: 992px) {
    header {
        padding: 15px 5%;
        background: rgba(15, 23, 42, 0.8) !important;
        backdrop-filter: blur(20px);
    }

    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(25px);
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        display: none;
        flex-direction: column;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    .get-started-btn a {
        display: inline-block;
        width: auto;
        margin-top: 15px;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    color: var(--white);
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.1;
    max-width: 800px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
}

/* Dark Section */
.section-dark {
    background: #1a252f;
    color: #fff;
    padding: 80px 10%;
}

.section-dark h2 {
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 24px;
}

.section-dark h1 {
    font-size: 60px;
    margin-bottom: 30px;
}

.accent-green {
    color: #2ecc71;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.btn-green {
    background: #27ae60;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
}

/* Benefit Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card h3 {
    color: #27ae60;
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #e91e63;
    display: flex;
    flex-direction: column;
    padding: 10px;
    z-index: 999;
}

.social-bar a {
    color: #fff;
    margin: 10px 0;
    font-size: 20px;
    text-align: center;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #3498db;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
}

/* Product Suite */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 10%;
    background: #fff;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 16px;
    color: #333;
}

/* Checkmark List */
.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    color: #fff;
}

.check-list li i {
    color: #f1c40f;
    margin-right: 15px;
    margin-top: 5px;
}

.check-list li b {
    display: block;
    color: #fff;
    text-transform: uppercase;
}

/* Promise Box */
.promise-box {
    border: 3px solid #f1c40f;
    padding: 60px;
    text-align: center;
    margin-top: 50px;
}

.promise-box h1 {
    font-size: 60px;
    margin-bottom: 30px;
}

.promise-box p {
    font-size: 24px;
    color: #ddd;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #f1c40f;
    border-radius: 50%;
}

.dot-dim {
    opacity: 0.3;
}

/* Initiative List */
.initiative-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.initiative-list li {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.initiative-list li::before {
    content: "•";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Forms */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0056b3;
}

/* About Page Styles */
.about-hero {
    padding: 100px 10%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
}

.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-collage img {
    width: 100%;
    border-radius: 4px;
}

.section-white {
    padding: 80px 10%;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.gradient-box {
    padding: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    border-radius: 4px;
    color: #333;
}

/* Services Page Styles */
.services-hero {
    padding: 80px 10%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-hero h1 {
    font-size: 60px;
    font-weight: 600;
}

.services-hero img {
    width: 50%;
    border-radius: 4px;
}

.service-section {
    padding: 80px 10%;
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Product Suite Styles */
.product-hero {
    padding: 80px 10%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-hero h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
}

.product-hero img {
    width: 50%;
    border-radius: 4px;
}

.description-box {
    background: linear-gradient(to right, #fff, #ffebee);
    padding: 80px 10%;
    text-align: center;
}

.description-box p {
    font-size: 18px;
    color: #d81b60;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-section {
    padding: 80px 10%;
    background: linear-gradient(to right, #ffebee, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Blog Styles */
.blog-section {
    padding: 80px 10%;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #333;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Styles */
.contact-hero {
    padding: 80px 10%;
    background: linear-gradient(to bottom, #fff, #ffebee);
    text-align: left;
}

.contact-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-container {
    padding: 50px 10%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 0px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #999;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #ddd;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #333;
}

.btn-submit {
    grid-column: span 2;
    justify-self: end;
    padding: 15px 40px;
    border: 1px solid #333;
    background: #fff;
    color: #333;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333;
    color: #fff;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 20px;
    color: #333;
    margin-right: 20px;
    text-decoration: none;
}

/* Opportunity Styles */
.opp-hero {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.opp-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #333;
}

.opp-hero p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.earn-ways {
    padding: 80px 10%;
    background: #fafafa;
}

.earn-ways h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.earn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.earn-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2ecc71;
}

.earn-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.earn-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.packages-section {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.package-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-price {
    font-size: 30px;
    font-weight: 900;
    color: #2ecc71;
    margin: 20px 0;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 768px) {

    .about-hero,
    .services-hero,
    .product-hero,
    .grid-2,
    .values-grid,
    .service-grid,
    .service-row-3,
    .blog-grid,
    .contact-container,
    .contact-form,
    .earn-grid,
    .packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-hero,
    .services-hero,
    .product-hero,
    .section-white,
    .description-box,
    .testimonial-section,
    .blog-section,
    .contact-hero,
    .contact-container,
    .opp-hero,
    .earn-ways,
    .packages-section {
        padding: 40px 5%;
    }

    .about-text h1,
    .services-hero h1,
    .product-hero h1,
    .section-white h1,
    .testimonial-section h2,
    .contact-hero h1,
    .opp-hero h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .services-hero img,
    .product-hero img,
    .testimonial-section img {
        width: 100%;
        margin-top: 20px;
    }

    .image-collage {
        margin-top: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid>div {
        margin-bottom: 20px;
        text-align: left !important;
    }

    .gradient-box,
    .service-item,
    .blog-card,
    .contact-info,
    .package-card {
        margin-bottom: 20px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .btn-submit {
        width: 100%;
    }

    .description-box p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    .hero-content p {
        font-size: 16px !important;
    }

    .logo img {
        height: 40px;
    }

    .promise-box {
        padding: 30px;
    }

    .promise-box h1 {
        font-size: 32px;
    }
}

.main-nav ul li a.active {
    color: var(--primary-color);
}