@font-face {
    font-family: 'Vazir';
    src: url('/content/fonts/Vazir-Black.woff2');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', sans-serif;
    font-weight: 100;
      outline: none;
  scroll-behavior: smooth;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

:root {
    --primary-color: #0072ff;
    --secondary-color: #00c6ff;
    --accent-color: #013152;
    --dark-color: #0a0e17;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 114, 255, 0.2);
    --text-color: #e2e8f0;
    --text-secondary: #94a3b8;
    --transition: all 0.3s ease;
    --border-radius-sm: 8px;
}

body {
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}




.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(1px);
}


.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 247, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;

}



.particles {
    position: absolute;
    width: 100%;
    height: 100%;

}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00f7ff;
    box-shadow:
        0 0 10px #00f7ff,
        0 0 20px #00f7ff,
        0 0 30px #0066ff;
}



@media (max-width: 768px) {
    .content {
        padding: 25px;
        margin: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .gradient-bg {
        width: 200vw;
        height: 200vh;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
@media (min-width: 769px) {
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 30px;
        padding: 15px 0;
    }
    
    .nav {
        display: flex;
        justify-content: center;
    }
    
    .nav-list {
        display: flex;
        list-style: none;
        gap: 8px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
            border-radius: 80px;
    corner-shape: squircle;
        padding: 8px;
        box-shadow: 0 4px 20px rgba(0, 114, 255, 0.1);
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        color: var(--text-color);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 20px;
           border-radius: 80px;
    corner-shape: squircle;
        transition: all 0.3s ease;
        display: block;
        position: relative;
        z-index: 1;
    }
    
    .nav-link:hover {
        color: var(--text-color);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item.active .nav-link {
        color: white;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
           border-radius: 80px;
    corner-shape: squircle;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-link:hover::before {
        opacity: 0.3;
    }
    
    .header-actions {
        display: flex;
        gap: 12px;
    }
    
    .header-actions .btn {
        padding: 10px 22px;
        font-size: 15px;
          border-radius: 80px;
    corner-shape: squircle;
        font-weight: 500;
    }
    
    .header-actions .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        position: relative;
        overflow: hidden;
    }
    
    .header-actions .btn-primary::after {
        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.5s ease;
    }
    
    .header-actions .btn-primary:hover::after {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .nav, .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo a {
        font-size: 22px;
    }
}

.logo{
    width: auto;
    height: auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 24px;
    gap: 12px;
}

.img-icon {
    width: 70px;
    height: 50px;
    transition: var(--transition);
}

.img-namad{
        width: 200px;
    height: 200px;
}

.logo-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
        border-radius: 80px;
    corner-shape: squircle;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--secondary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-color);
       border-radius: 80px;
    corner-shape: squircle;
    transition: var(--transition);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 90%;
    background: rgba(1, 31, 99, 0.267);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 30px;
    
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: bold;
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-content {
    padding: 25px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
     border-radius: 80px;
    corner-shape: squircle;
    transition: var(--transition);
    font-size: 18px;
}

.mobile-nav-link:hover {
    background: rgba(0, 198, 255, 0.1);
    color: var(--secondary-color);
}

.mobile-sidebar-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(0, 198, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        #00c6ff, 
        #0072ff);
    border-radius: 6px;
    border: 2px solid rgba(10, 14, 23, 0.9);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        #00d2ff, 
        #0088ff);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #0072ff rgba(10, 14, 23, 0.8);
}
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
}

.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
        background: linear-gradient(rgb(0, 0, 0), rgba(31, 36, 45, 0.699)),
      url('../content/images/hidden_base_in_the_winter_mountains-wallpaper-2560x1080.jpg') no-repeat center center/cover;
      height: 1000px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 114, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 5px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-visual {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 114, 255, 0.3));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.code-box {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.3);
          border-radius: 80px;
    corner-shape: squircle;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 114, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 550px;
    position: relative;
}

.code-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-color), 
        transparent);
}

.code-header {
    background: rgba(0, 20, 40, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 198, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
    box-shadow: 0 0 5px #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 5px #ffbd2e;
}

.dot.green {
    background: #27c93f;
    box-shadow: 0 0 5px #27c93f;
}

.code-filename {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.code-content {
    padding: 25px;
    overflow-x: auto;
    background: rgba(0, 10, 20, 0.7);
    position: relative;
}

.code-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(0, 198, 255, 0.03) 1px,
            rgba(0, 198, 255, 0.03) 2px
        );
    pointer-events: none;
}

.code-content pre {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
}

.code-line {
    display: block;
    margin-bottom: 2px;
    position: relative;
    padding-left: 10px;
}

.code-line::before {
    content: '>';
    position: absolute;
    left: -5px;
    color: var(--secondary-color);
    opacity: 0.5;
    font-size: 12px;
}
.code-comment {
    color: #4fd1c7;
    font-style: italic;
}

.code-keyword {
    color: #ff79c6;
    font-weight: bold;
}

.code-function {
    color: #50fa7b;
}

.code-variable {
    color: #ffb86c;
}

.code-string {
    color: #f1fa8c;
}

.code-number {
    color: #bd93f9;
}

.code-class {
    color: #8be9fd;
}
@keyframes typing {
    from { 
        opacity: 0;
        transform: translateX(-10px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.code-content {
    position: relative;
}

.code-content::before {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 2px;
    height: 20px;
    background: var(--secondary-color);
    animation: cursorBlink 1s infinite;
    z-index: 2;
    margin-right: 90%;
}
@keyframes matrixFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

.code-box {
    position: relative;
    overflow: hidden;
}

.code-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 198, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 198, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.code-line {
    animation: typing 0.5s ease-out forwards;
    opacity: 0;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.3s; }
.code-line:nth-child(3) { animation-delay: 0.5s; }
.code-line:nth-child(4) { animation-delay: 0.7s; }
.code-line:nth-child(5) { animation-delay: 0.9s; }
.code-line:nth-child(6) { animation-delay: 1.1s; }
.code-line:nth-child(7) { animation-delay: 1.3s; }
.code-line:nth-child(8) { animation-delay: 1.5s; }
.code-line:nth-child(9) { animation-delay: 1.7s; }
.code-line:nth-child(10) { animation-delay: 1.9s; }
.code-line:nth-child(11) { animation-delay: 2.1s; }
.code-line:nth-child(12) { animation-delay: 2.3s; }
.code-line:nth-child(13) { animation-delay: 2.5s; }
.code-line:nth-child(14) { animation-delay: 2.7s; }
.code-line:nth-child(15) { animation-delay: 2.9s; }
.code-line:nth-child(16) { animation-delay: 3.1s; }
.code-line:nth-child(17) { animation-delay: 3.3s; }
.code-line:nth-child(18) { animation-delay: 3.5s; }
.code-line:nth-child(19) { animation-delay: 3.7s; }
.code-line:nth-child(20) { animation-delay: 3.9s; }
.code-line:nth-child(21) { animation-delay: 4.1s; }
.code-line:nth-child(22) { animation-delay: 4.3s; }
.code-line:nth-child(23) { animation-delay: 4.5s; }
.code-line:nth-child(24) { animation-delay: 4.7s; }
.code-line:nth-child(25) { animation-delay: 4.9s; }
.code-line:nth-child(26) { animation-delay: 5.1s; }

.hero-image-2{
    display: none;
}
@media (max-width: 768px) {
.hero-image{
    display: none;
}

.hero-image-2{
    display: block;
}
}
.intro {
    padding: 100px 0;
}

.section-header,
.intro-content {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
       border-radius: 80px;
    corner-shape: squircle;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 114, 255, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* دکمه CTA در بخش معرفی */
.intro-cta {
    margin-top: 50px;
    text-align: center;
}

.intro-cta .btn {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 80px;
    corner-shape: squircle;
    border-width: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
    border-color: var(--secondary-color);
    background: rgba(0, 198, 255, 0.05);
}

.intro-cta .btn .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.intro-cta .btn:hover .icon {
    transform: translateX(5px);
}

/* افکت نئونی برای دکمه */
.intro-cta .btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--secondary-color), 
        var(--primary-color), 
        var(--accent-color),
        var(--secondary-color));
    border-radius: 80px;
    corner-shape: squircle;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;
}

.intro-cta .btn:hover::before {
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .intro-cta .btn {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

.latest-products {
    padding: 100px 0;
    background: rgba(10, 14, 23, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 80px;
    corner-shape: squircle;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.3);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 114, 255, 0.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual {
    width: 100%;
    height: 100%;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5px 15px;
    border-radius: 80px;
    corner-shape: squircle;
    font-size: 14px;
    font-weight: bold;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}
.contact {
    padding: 100px 0;
          background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(31, 36, 45, 0.699)),
      url('../content/images/science_fiction_artwork-wallpaper-2560x1080.jpg') no-repeat center center/cover;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 80px;
    corner-shape: squircle;
    padding: 40px;
    width: 500px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 80px;
    corner-shape: squircle;
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-textarea {
    resize: none;
    min-height: 120px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 80px;
    corner-shape: squircle;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 80px;
    corner-shape: squircle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.5;
}
.footer {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 80px;
    corner-shape: squircle;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.enamad-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
      border-radius: 80px;
    corner-shape: squircle;
}

.enamad-icon {
    width: 80px;
    height: 80px;
}

.enamad-text {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
}

.copyright strong {
    color: var(--text-color);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-link-bottom {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link-bottom:hover {
    color: var(--secondary-color);
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateY(20px) scale(0.9);
    padding: 0;
       border-radius: 80px;
    corner-shape: squircle;
    margin-bottom: 60px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
}

.scroll-to-top:hover .scroll-to-top-icon {
    filter: drop-shadow(0 10px 20px rgba(0, 114, 255, 0.8));
}

.scroll-to-top-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 114, 255, 0.6));
    transition: all 0.3s ease;
     border-radius: 80px;
    corner-shape: squircle;
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 5px 15px rgba(0, 114, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 8px 25px rgba(0, 114, 255, 0.9));
    }

    100% {
        filter: drop-shadow(0 5px 15px rgba(0, 114, 255, 0.6));
    }
}

.scroll-to-top.float {
    animation: float 3s ease-in-out infinite;
}

.scroll-to-top.pulse .scroll-to-top-icon {
    animation: pulse 2s ease-in-out infinite;
}
@keyframes click {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.scroll-to-top:active {
    animation: click 0.3s ease;
}
@media (max-width: 768px) {
    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 114, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 114, 255, 0);
    }
}

.scroll-to-top.pulse {
    animation: pulse 2s infinite;
}



@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }

    .scroll-to-top-icon {
        width: 50px;
        height: 50px;
    }

    .contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
      border-radius: 80px;
    corner-shape: squircle;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    width: auto;
}
}
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title,
    .cta-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}












