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

:root {
    /* Color Palette */
    --primary-orange: #F7A246;
    --accent-blue-light: #2274A5;
    --accent-blue-dark: #10375C;
    --background-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --gradient-green: #83c4ea;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--background-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow: hidden; /* Disable scrolling */
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Full Screen Hero Section */
.hero-fullscreen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100vh;
    width: 100vw;
    align-items: center;
    position: relative;
    padding: 1.5rem 3rem;
    color: white;
    overflow: hidden;
}

/* Background Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Video overlay for better text readability */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 55, 92, 0.8) 0%, rgba(34, 116, 165, 0.6) 100%);
    z-index: 0;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.page-container {
    height: calc(100vh - 80px); /* Account for navigation height */
    overflow: hidden;
}

/* Tab Navigation */
.tab-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 2rem;
}

.tab-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 162, 70, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover {
    color: var(--accent-blue-dark);
    background: rgba(34, 116, 165, 0.1);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    color: var(--primary-orange);
    background: rgba(247, 162, 70, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.tab-icon {
    width: 18px;
    height: 18px;
}

/* Tab Content */
.tab-content {
    display: none;
    height: 100%;
    padding-top: 80px; /* Account for fixed navigation */
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    height: calc(100vh - 80px);
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-blue-light) 100%);
    padding: 2rem 4rem;
    color: white;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}


.cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.portfolio-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #f59e2b 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 162, 70, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.portfolio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.portfolio-btn:hover::before {
    left: 100%;
}

.portfolio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247, 162, 70, 0.5);
    background: linear-gradient(135deg, #f59e2b 0%, var(--primary-orange) 100%);
}

.portfolio-btn .icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gradient-green);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.share-btn:hover {
    color: #6bb3e0;
}

.share-icon {
    width: 16px;
    height: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.gradient-orb {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gradient-green) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
    position: relative;
    transition: transform 0.3s ease-out;
}

.gradient-orb::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) scale(1.03) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) scale(0.98) rotate(240deg);
    }
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 0;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 110%;
    height: auto;
    max-width: 700px;
    object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-blue-dark);
}

.product-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 162, 70, 0.3);
    background: #f59e2b;
}

.demo-btn.green {
    background: var(--gradient-green);
}

.demo-btn.green:hover {
    background: #6bb3e0;
    box-shadow: 0 6px 20px rgba(131, 196, 234, 0.3);
}

.demo-icon {
    width: 16px;
    height: 16px;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 2rem;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.nav-arrows {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue-light);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--accent-blue-dark);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.learn-more {
    color: var(--accent-blue-light);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-blue-dark);
}

/* Products Tab Content */
.products-container {
    height: calc(100vh - 80px);
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 1rem;
}

.products-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

/* About Tab Content */
.about-container {
    height: calc(100vh - 80px);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background: var(--primary-orange);
    border-radius: 12px;
    padding: 0.75rem;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--accent-blue-dark) 100%);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

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

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Contact Tab Content */
.contact-container {
    height: calc(100vh - 80px);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background: var(--accent-blue-light);
    border-radius: 12px;
    padding: 0.75rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.primary-btn:hover {
    background: #f59e2b;
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-blue-light);
    border: 2px solid var(--accent-blue-light);
}

.secondary-btn:hover {
    background: var(--accent-blue-light);
    color: white;
}

/* Contact Form */
.demo-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.demo-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #f59e2b;
    transform: translateY(-2px);
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.portfolio-btn, .share-btn {
    position: relative;
    overflow: hidden;
}

/* Enhanced gradient orb animations */
.gradient-orb {
    transition: transform 0.3s ease-out;
}

/* Specifications Overlay */
.specs-overlay {
    position: absolute;
    top: 20%;
    right: 10%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    max-width: 300px;
    transition: all 0.3s ease;
}

.specs-overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.spec-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

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

.spec-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--accent-blue-dark);
    font-weight: 600;
}

.spec-applications {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.app-list {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Applications Section */
.applications-section {
    margin-bottom: 2rem;
}

.applications-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 1.5rem;
}

.applications-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
    break-inside: avoid;
}

.applications-list li::before {
    content: '•';
    color: var(--gradient-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tab-container {
        padding: 0 1rem;
        gap: 1rem;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .products-container,
    .about-container,
    .contact-container {
        padding: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Responsive Design for Full Screen Hero */
    .hero-fullscreen {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-visual {
        height: auto;
        padding: 1rem;
    }

    .gradient-orb {
        width: 300px;
        height: 300px;
    }

    .specs-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .tab-navigation {
        padding: 0 1rem;
    }

    .tab-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

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

    .tab-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .products-container,
    .about-container,
    .contact-container {
        padding: 1rem;
    }

    .products-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .contact-methods {
        gap: 1rem;
    }

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

    /* Responsive Design for Full Screen Hero */
    .hero-fullscreen {
        padding: 1rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-visual {
        height: auto;
        padding: 1rem;
    }

    .gradient-orb {
        width: 200px;
        height: 200px;
    }

    .specs-overlay {
        padding: 1rem;
        margin: 1rem auto 0;
    }
}

@media (max-width: 480px) {
    .page-container {
        height: calc(100vh - 120px); /* Account for wrapped navigation */
    }

    .tab-content {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }

    .product-content p,
    .about-text > p,
    .contact-info > p {
        font-size: 0.875rem;
    }

    .demo-form {
        padding: 1.5rem;
    }

    /* Responsive Design for Full Screen Hero */
    .hero-fullscreen {
        padding: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .portfolio-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .share-btn {
        font-size: 0.75rem;
    }

    .specs-overlay {
        padding: 0.75rem;
    }
}

/* Enhanced hover effects for one-page layout */
.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 162, 70, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

/* Loading animation for tab switching */
.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Improved gradient orb animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) scale(1.03) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) scale(0.98) rotate(240deg);
    }
}

.gradient-orb {
    animation: float 8s ease-in-out infinite;
}

.gradient-orb::before {
    animation: float 6s ease-in-out infinite reverse;
}

/* Custom scrollbar - hidden for one-page layout */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Hide any scrollbars for one-page design */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
