/*
Theme Name: Specialization One
Description: Modern 3D Design Company WordPress Theme
Version: 1.0
Author: Specialization.One
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo img {
    width: 80px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-text {
    color: #ffffff;
}

.logo-dot {
    color: #667eea;
    margin: 0 2px;
}

.logo-one {
    color: #764ba2;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-upload {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-upload:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 2;
}

/* Custom Content Section */
.custom-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.custom-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.custom-content h1,
.custom-content h2,
.custom-content h3,
.custom-content h4,
.custom-content h5,
.custom-content h6 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.custom-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-content a:hover {
    color: #764ba2;
}

.custom-content ul,
.custom-content ol {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.custom-content li {
    margin-bottom: 0.5rem;
}

.custom-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.custom-content .wp-block-button .wp-block-button__link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-content .wp-block-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* 3D Scene Container */
.scene-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#three-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.scene-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.control-group {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.control-btn.active,
.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.scene-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-align: center;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    filter: blur(1px);
}

.float-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.float-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.float-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation: float 5s ease-in-out infinite reverse;
}

/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-preview {
    height: 250px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    height: calc(100% - 80px);
    position: relative;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #0a0a0a;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .modal-content {
        width: 95vw;
        height: 95vh;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .scene-container {
        height: 400px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Rileqe Style Hero Section */
.hero.rileqe-style {
    min-height: 100vh;
    position: relative;
    background: #000;
    overflow: hidden;
    display: block;
    align-items: unset;
}

.hero.rileqe-style .xl\:max-w-\[1920px\] {
    max-width: 1920px;
}

.hero.rileqe-style .w-full {
    width: 100%;
}

.hero.rileqe-style .absolute {
    position: absolute;
}

.hero.rileqe-style .top-0 {
    top: 0;
}

.hero.rileqe-style .z-9 {
    z-index: 9;
}

.hero.rileqe-style .z-99 {
    z-index: 99;
}

.hero.rileqe-style .top-40 {
    top: 10rem;
}

.hero.rileqe-style .sm\:pl-20 {
    padding-left: 2.25rem;
}

.hero.rileqe-style .pl-9 {
    padding-left: 2.25rem;
}

.hero.rileqe-style .text-\[50px\] {
    font-size: 50px;
}

.hero.rileqe-style .sm\:text-\[90px\] {
    font-size: 50px;
}

.hero.rileqe-style .lg\:text-\[150px\] {
    font-size: 50px;
}

.hero.rileqe-style .font-semibold {
    font-weight: 600;
}

.hero.rileqe-style .text-white {
    color: white;
}

.hero.rileqe-style .sm\:leading-\[150px\] {
    line-height: 50px;
}

.hero.rileqe-style .leading-\[50px\] {
    line-height: 50px;
}

.hero.rileqe-style .sm\:top-\[255px\] {
    top: 210px;
}

.hero.rileqe-style .lg\:top-80 {
    top: 210px;
}

.hero.rileqe-style .top-\[210px\] {
    top: 210px;
}

.hero.rileqe-style .sm\:top-\[350px\] {
    top: 290px;
}

.hero.rileqe-style .lg\:top-\[450px\] {
    top: 290px;
}

.hero.rileqe-style .top-\[290px\] {
    top: 290px;
}

.hero.rileqe-style .text-\[18px\] {
    font-size: 18px;
}

.hero.rileqe-style .sm\:text-\[20px\] {
    font-size: 18px;
}

.hero.rileqe-style .mt-10 {
    margin-top: 2.5rem;
}

.hero.rileqe-style .sm\:opacity-100 {
    opacity: 0.7;
}

.hero.rileqe-style .opacity-70 {
    opacity: 0.7;
}

.hero.rileqe-style .max-w-\[800px\] {
    max-width: 800px;
}

.hero.rileqe-style .pr-4 {
    padding-right: 1rem;
}

.hero.rileqe-style .sm\:top-\[470px\] {
    top: 470px;
}

.hero.rileqe-style .lg\:top-\[570px\] {
    top: 470px;
}

.hero.rileqe-style .top-\[470px\] {
    top: 470px;
}

.hero.rileqe-style .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero.rileqe-style .animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero.rileqe-style .border-2 {
    border-width: 2px;
}

.hero.rileqe-style .backdrop-blur-3lg {
    backdrop-filter: blur(64px);
}

.hero.rileqe-style .border-\[1\.5px\] {
    border-width: 1.5px;
}

.hero.rileqe-style .px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.hero.rileqe-style .sm\:mt-8 {
    margin-top: 2rem;
}

.hero.rileqe-style .mt-8 {
    margin-top: 2rem;
}

.hero.rileqe-style .border-\[rgba\(200\,200\,200\,0\.9\)\] {
    border-color: rgba(200, 200, 200, 0.9);
}

.hero.rileqe-style .bg-\[rgba\(200\,200\,200\,0\.3\)\] {
    background-color: rgba(200, 200, 200, 0.3);
}

.hero.rileqe-style .cursor-pointer {
    cursor: pointer;
}

.hero.rileqe-style .rounded {
    border-radius: 0.25rem;
}

.hero.rileqe-style .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.hero.rileqe-style .sm\:block {
    display: block;
}

.hero.rileqe-style .text-\[14px\] {
    font-size: 14px;
}

.hero.rileqe-style .-rotate-90 {
    transform: rotate(-90deg);
}

.hero.rileqe-style .sm\:bottom-\[110px\] {
    bottom: 80px;
}

.hero.rileqe-style .bottom-\[80px\] {
    bottom: 80px;
}

.hero.rileqe-style .left-\[-20px\] {
    left: -20px;
}

.hero.rileqe-style .sm\:left-3 {
    left: -20px;
}

/* 3D Canvas Styling for Rileqe Style */
.hero.rileqe-style #three-canvas {
    width: 100%;
    height: 100vh;
    display: block;
    background: #000;
}

/* Responsive Design for Rileqe Style */
@media (min-width: 640px) {
    .hero.rileqe-style .sm\:pl-20 {
        padding-left: 5rem;
    }
    
    .hero.rileqe-style .sm\:text-\[90px\] {
        font-size: 90px;
    }
    
    .hero.rileqe-style .sm\:leading-\[150px\] {
        line-height: 150px;
    }
    
    .hero.rileqe-style .sm\:top-\[255px\] {
        top: 255px;
    }
    
    .hero.rileqe-style .sm\:top-\[350px\] {
        top: 350px;
    }
    
    .hero.rileqe-style .sm\:text-\[20px\] {
        font-size: 20px;
    }
    
    .hero.rileqe-style .sm\:opacity-100 {
        opacity: 1;
    }
    
    .hero.rileqe-style .sm\:top-\[470px\] {
        top: 470px;
    }
    
    .hero.rileqe-style .sm\:mt-8 {
        margin-top: 2rem;
    }
    
    .hero.rileqe-style .sm\:bottom-\[110px\] {
        bottom: 110px;
    }
    
    .hero.rileqe-style .sm\:left-3 {
        left: 0.75rem;
    }
    
    .hero.rileqe-style .sm\:block {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero.rileqe-style .lg\:text-\[150px\] {
        font-size: 150px;
    }
    
    .hero.rileqe-style .lg\:top-80 {
        top: 20rem;
    }
    
    .hero.rileqe-style .lg\:top-\[450px\] {
        top: 450px;
    }
    
    .hero.rileqe-style .lg\:top-\[570px\] {
        top: 570px;
    }
}

/* Button hover effects for Rileqe style */
.hero.rileqe-style a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero.rileqe-style a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 200, 200, 0.3);
}
