:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #808080;
    --accent-rgb: 128, 128, 128;
    --background: var(--secondary-color);
    --text-color: var(--primary-color);
    --dark: #000000;
    --hero-text: #ffffff;
    --hero-bg: var(--dark);
    --hero-bg-gradient: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    --hero-badge-bg: rgba(255, 255, 255, 0.1);
    --hero-badge-border: rgba(255, 255, 255, 0.1);
    --button-bg: var(--secondary-color);
    --button-text: var(--dark);
    --button-hover-bg: var(--accent-color);
    --button-hover-text: var(--secondary-color);
    --grid-line-color: rgba(255, 255, 255, 0.03);
    --transition-speed: 0.3s;
    --hero-bg-start: #000000;
    --hero-bg-end: #1a1a1a;
    --geometric-color: rgba(255, 255, 255, 0.05);
    --geometric-dots: rgba(255, 255, 255, 0.03);
    --geometric-color-rgb: 255, 255, 255;
}
    .hero-content {
        /* ... existing styles ... */
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
        /* gap: 2rem; */
    }

    .hero-text {
        order: 1;
    }

    .globe-animation {
        order: 2;
        display: none;
    }

    @media (max-width: 768px) {
        .hero-content {
            flex-direction: column;
        }

        .hero-text {
            order: 2;
            text-align: center;
        }

        .globe-animation {
            order: 1;
            display: none;
        }
    }
    
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Optional: Add a subtle subtitle class */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* Header/Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    /* font-weight: bolder; */
    /* font-weight: normal; */
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-family: Baskerville, Georgia, serif;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(45deg);
}

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-tagline {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 1.5rem 0 3rem;
    opacity: 0.9;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-color);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-section .cta-button {
    min-width: 200px;
    justify-content: center;
}

.cta-section .cta-primary {
    background: var(--background);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cta-section .cta-secondary {
    color: var(--background);
    background: var(--text-color);
    border: 2px solid var(--text-color);
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
}
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


.hero .cta-secondary:hover {
    background: var(--text-color);
    color: var(--background);
}

.hero .cta-primary:hover {
    color: var(--text-color);
    background: var(--background);
}
/* Geometric Overlay for CTA */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--geometric-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--geometric-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

/* Common Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    background: var(--background);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-slogan,
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description,
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}
.hero-header {
    font-size: 1.3rem;
    font-weight: bold;
    background-color: var(--text-color);
    color: var(--background);
    width: fit-content;
    padding-left: 2%;
    padding-right: 2%;
    /* margin-bottom: 2%; */
    /* border-radius: 50px; */
    /* line-height: 1.5; */
    opacity: 0.9;
    /* text-align: center; */
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.footer-copyright {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-logo {
        font-size: 4rem;
    }

    .hero-slogan {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .cta-primary {
    background: var(--text-color);
    color: var(--background);
    border: 2px solid var(--text-color);
}

.hero .cta-secondary {
    background: var(--background);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}


.cta-primary:hover {
    background: var(--text-color);
    color: var(--background);
}

.cta-secondary:hover {
    color: var(--text-color);
    background: var(--background);
}

/* Geometric Overlay */
.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--geometric-color) 5px, transparent 10px),
                      linear-gradient(90deg, var(--geometric-color) 5px, transparent 1px);
    background-size: 90px 50px;
    opacity: 0.7;
    pointer-events: none;
}

/* Theme-specific styles */
:root[data-theme="dark"] .hero {
    color: var(--secondary-color);
}

:root[data-theme="dark"] .hero .hero-slogan,
:root[data-theme="dark"] .hero .hero-title {
    color: var(--secondary-color);
}

:root[data-theme="dark"] .hero .hero-description,
:root[data-theme="dark"] .hero .hero-subtitle {
    color: var(--secondary-color);
}

:root[data-theme="light"] .hero {
    color: var(--primary-color);
}

:root[data-theme="light"] .hero .hero-slogan,
:root[data-theme="light"] .hero .hero-title {
    color: var(--primary-color);
}

:root[data-theme="light"] .hero .hero-description,
:root[data-theme="light"] .hero .hero-subtitle {
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-slogan,
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hero-slogan,
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description,
    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

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

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* Theme-specific styles */
:root[data-theme="dark"] .cta-section {
    color: var(--secondary-color);
}

:root[data-theme="light"] .cta-section {
    color: var(--primary-color);
}

/* Add this to your CSS file */
.bounce-icon {
    display: inline-block;
    margin-left: 8px; /* Adjust spacing as needed */
    animation: bounce 1s infinite;
}

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