/* Font Face Declarations */
@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/peydaWeb-extralight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('../../fonts/PeydaWeb-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Peyda', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

.main-container {
    direction: rtl;
}
/* Main Container */
.container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    width: 316px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.4px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-heading span {
    display: block;
}

/* Hero Robots Container */
.hero-robots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
    flex-direction: row-reverse;
}

/* Individual Robot */
.hero-robot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-robot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
    max-width: none;
}

/* Floating Animations with Rotation */
@keyframes floatRotate1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes floatRotate2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    30% {
        transform: translateY(-10px) rotate(-1.5deg);
    }
    60% {
        transform: translateY(-14px) rotate(1.5deg);
    }
    90% {
        transform: translateY(-6px) rotate(0deg);
    }
}

@keyframes floatRotate3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-9px) rotate(1deg);
    }
    40% {
        transform: translateY(-13px) rotate(-1.5deg);
    }
    70% {
        transform: translateY(-7px) rotate(0.5deg);
    }
}

@keyframes floatRotate4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    35% {
        transform: translateY(-11px) rotate(-2deg);
    }
    55% {
        transform: translateY(-9px) rotate(1deg);
    }
    80% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

/* Robot 1 - Left */
.hero-robot-1 {
    animation: floatRotate1 5s ease-in-out infinite;
    animation-delay: 0s;
}

/* Robot 2 - Second from Left */
.hero-robot-2 {
    animation: floatRotate2 5.5s ease-in-out infinite;
    animation-delay: 0.5s;
    margin-top: -50px;
}

/* Robot 3 - Second from Right */
.hero-robot-3 {
    animation: floatRotate3 6s ease-in-out infinite;
    animation-delay: 1s;
    margin-top: -50px;
}

/* Robot 4 - Right */
.hero-robot-4 {

    animation: floatRotate4 5.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Description Section */
.description-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.description-wrapper {
    position: relative;
    width: 809px;
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.description-text {
    font-family: 'Peyda', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #FFFFFF;
    text-align: justify;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.18px;
    width: 100%;
}

.description-text span {
    display: block;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    width: 100%;
    position: relative;
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features Heading */
.features-heading-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 64px;
}

.features-heading {
    font-family: 'Peyda', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.32px;
    white-space: nowrap;
}

/* Features Grid */
.features-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: space-evenly;
    gap: 36px 0;
}

/* Feature Item */
.feature-item {
    position: relative;
    width: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
}

.feature-bullet {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
    border-radius: 100px;
    flex-shrink: 0;
}

.feature-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

/* Specific widths for different items */
.feature-item[data-node-id="638:812"] .feature-content {
    width: 377px;
}

.feature-item[data-node-id="638:824"] .feature-content {
    width: 336px;
}

.feature-item[data-node-id="638:818"] .feature-content,
.feature-item[data-node-id="638:836"] .feature-content,
.feature-item[data-node-id="638:830"] .feature-content,
.feature-item[data-node-id="638:842"] .feature-content {
    width: 352px;
}

.feature-title {
    font-family: 'Peyda', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    width: 100%;
    margin-bottom: 16px;
}

.feature-text {
    font-family: 'Peyda', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: right;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.44px;
    width: 100%;
}

/* Laptop Section */
.laptop-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.laptop-container {
    position: relative;
    z-index: 1;
}

.laptop-img {
    height: 503px;
    width: 902px;
}

/* Laptop Screenshot (full screen, scrollable) */
.laptop-screenshot-container {
    position: absolute;
    top: 5%;
    left: 11.5%;
    right: 11.5%;
    bottom: 5%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.laptop-screenshot-container::-webkit-scrollbar {
    width: 4px;
}

.laptop-screenshot-container::-webkit-scrollbar-track {
    background: transparent;
}

.laptop-screenshot-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.laptop-screenshot-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.laptop-screenshot {
    width: 100%;
    height: auto;
}

/* Quote Section */
.quote-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.quote-wrapper {
    position: relative;
    width: 844px;
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-text {
    font-family: 'Peyda', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    direction: rtl;
    letter-spacing: -0.66px;
    width: 100%;
}

.quote-text span {
    display: block;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES - Desktop styles preserved above
   ============================================ */

/* Small Desktop (up to 1440px) */
@media (max-width: 1440px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        margin-top: 120px;
        min-height: 280px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 300px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 750px;
    }
    
    .features-section {
        padding: 0 20px;
    }
    
    .features-heading-wrapper {
        padding: 0 20px;
    }
    
    .features-section {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        padding: 0 20px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 400px;
    }
    
    .feature-item[data-node-id="638:812"] .feature-content,
    .feature-item[data-node-id="638:824"] .feature-content,
    .feature-item[data-node-id="638:818"] .feature-content,
    .feature-item[data-node-id="638:836"] .feature-content,
    .feature-item[data-node-id="638:830"] .feature-content,
    .feature-item[data-node-id="638:842"] .feature-content {
        width: 100%;
    }
    
    .laptop-container {
        width: 100%;
        max-width: 850px;
    }
    
    .laptop-img {
        width: 100%;
        height: auto;
    }
    
    .quote-wrapper {
        width: 100%;
        max-width: 800px;
    }
}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        margin-top: 100px;
        min-height: 250px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-heading {
        font-size: 36px;
        line-height: 48px;
    }
    
    .hero-robot {
        max-width: 120px;
    }
    
    .hero-robot-2,
    .hero-robot-3 {
        margin-top: -30px;
    }
    
    .description-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 700px;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .features-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .features-heading-wrapper {
        padding: 0;
        margin-bottom: 48px;
        width: 100%;
    }
    
    .features-heading {
        font-size: 28px;
        line-height: 40px;
        white-space: normal;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
        padding: 0;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .feature-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .laptop-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .laptop-container {
        max-width: 100%;
    }
    
    .quote-section {
        margin-top: 64px;
        padding: 0 30px;
    }
    
    .quote-wrapper {
        width: 100%;
        max-width: 700px;
    }
    
    .quote-text {
        font-size: 26px;
        line-height: 1.3;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px;
        min-height: 200px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 260px;
    }
    
    .hero-heading {
        font-size: 28px;
        line-height: 38px;
    }
    
    .hero-robot {
        max-width: 80px;
    }
    
    .hero-robot-image {
        width: 100%;
        height: auto;
    }
    
    .hero-robot-2,
    .hero-robot-3 {
        margin-top: -20px;
    }
    
    .description-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .description-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .features-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .features-heading-wrapper {
        margin-bottom: 32px;
        width: 100%;
    }
    
    .features-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px 0;
        padding: 0;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }
    
    .feature-bullet {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .feature-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .laptop-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .laptop-container {
        width: 100%;
        position: relative;
    }
    
    .laptop-img {
        width: 100%;
        height: auto;
    }
    
    .laptop-screenshot-container {
        position: absolute;
    }
    
    .quote-section {
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .quote-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .quote-text {
        font-size: 22px;
        line-height: 1.3;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .hero-section {
        margin-top: 64px;
        min-height: 180px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 240px;
    }
    
    .hero-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hero-robot {
        max-width: 60px;
    }
    
    .hero-robot-image {
        width: 100%;
        height: auto;
    }
    
    .hero-robot-2,
    .hero-robot-3 {
        margin-top: -15px;
    }
    
    .description-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .features-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .features-heading-wrapper {
        margin-bottom: 24px;
        width: 100%;
    }
    
    .features-heading {
        font-size: 20px;
        line-height: 28px;
    }
    
    .features-grid {
        gap: 20px 0;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-bullet {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .laptop-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .quote-section {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 1.3;
    }
}
