/*==========================
RESET
==========================*/

@font-face {
    font-family: "IRANSansX";
    src: url("../assets/fonts/Iranian_Sans.ttf") format("truetype");
}

@font-face {
    font-family: "Peyda";
    src: url("../assets/fonts/Peyda-Bold.ttf") format("truetype");
    font-weight: bold;
}



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

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Peyda", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/*
.fa-solid.fa-phone{
      direction: ltr;
    text-align: left;
}
*/

/*==========================
COLORS
==========================*/

:root {
    --blue: #1f6bff;
    --dark: #071f52;
    --dark2: #0b2f78;
    --white: #fff;
    --border: rgba(255,255,255,.08);
}

/*==========================
TOP BAR
==========================*/

.top-bar {
    background: #06245f;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right,
.top-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-right span {
    font-size: 14px;
    color: #ddd;
}

.top-right i {
    margin-left: 8px;
    color: #53a6ff;
}

.top-left a {
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

.top-left a:hover {
    color: #53a6ff;
}

/*==========================
HEADER
==========================*/

header {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: #5aa6ff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,98,255,.35);
}

.btn-outline:hover {
    background: #fff;
    color: #003eaa;
}

/*==========================
HERO
==========================*/

.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,#266cff40,transparent);
    top: -400px;
    left: -200px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,#4aa8ff30,transparent);
    bottom: -350px;
    right: -150px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 5;
}

.hero-text {
    flex: 1;
}

.hero-text span {
    display: block;
    color: #3f98ff;
}

.hero-text p {
    font-size: 20px;
    line-height: 2;
    color: #d6d6d6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/*==========================
FLOAT
==========================*/

@keyframes float {
0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}
}

/*==========================
SWIPER
==========================*/

.swiper {
    width: 100%;
}

/*========================================
FEATURES
========================================*/

.features {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.feature {
    background: #0b2f78;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 20px;
    text-align: center;
    padding: 40px 25px;
    transition: .35s;
}

.feature:hover {
    transform: translateY(-10px);
    background: #1143a8;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.feature i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 32px;
    color: #53a6ff;
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 25px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature p {
    color: #cfd9ef;
    line-height: 2;
}

/*========================================
CATEGORY
========================================*/

.categories {
    padding: 90px 0;
}

.categories h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 55px;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card h3 {
    text-align: center;
    padding-top: 25px;
    font-size: 22px;
}

.card a {
    display: block;
    text-align: center;
    padding: 22px;
    color: #005eff;
    font-weight: bold;
}

/*========================================
COUNTER
========================================*/

.item {
    background: #0b2f78;
    border-radius: 18px;
    text-align: center;
    padding: 45px 25px;
}

.item h2 {
    font-size: 52px;
    color: #5db0ff;
    margin-bottom: 15px;
}

.item p {
    color: #d5ddee;
    font-size: 18px;
}

/*========================================
ABOUT
========================================*/

.about-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.video img {
    width: 100%;
    transition: .5s;
}

.video:hover img {
    transform: scale(1.08);
}

.play {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #1f6bff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

.content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.content p {
    color: #d6d6d6;
    line-height: 2.4;
    margin-bottom: 35px;
    font-size: 18px;
}

/*========================================
CLIENTS
========================================*/

.clients {
    padding: 80px 0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 36px;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logos img {
    opacity: .45;
    transition: .3s;
    filter: grayscale(100%);
    max-height: 60px;
}

.logos img:hover {
    opacity: 1;
    filter: none;
}

/*========================================
CTA
========================================*/

.cta {
    padding: 90px 0;
    background: linear-gradient(135deg,#1042a8,#1d6fff);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

footer {
    background: #04183f;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
}

footer p {
    color: #bbb;
}

/*========================================
SCROLLBAR
========================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #2d80ff;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #05142f;
}

/*==========================
ANIMATION
==========================*/

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/*==========================
BACK TO TOP
==========================*/

.backTop {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #1f6bff;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.backTop.active {
    opacity: 1;
    visibility: visible;
}

.backTop:hover {
    transform: translateY(-5px);
    background: #005eff;
}

nav a.active {
    color: #5aa6ff;
}

/*==========================
MOBILE MENU
==========================*/

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 10001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 20px;
    transition: .35s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px,-7px);
}

/* دکمه بستن داخل منوی موبایل */
.nav-close {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    margin: 0 auto 25px;
}

.nav-close:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
    transform: rotate(90deg);
}

/* پرده تیره پشت منوی موبایل */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,14,40,.6);
    backdrop-filter: blur(2px);
    z-index: 500;
    opacity: 0;
    transition: opacity .35s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/*==============================
MEGA MENU
==============================*/

.mega-parent {
    position: relative;
}

.mega-parent>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 900px;
    background: white;
    border-radius: 18px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .35s;
    box-shadow: 0 25px 60px rgba(0,0,0,.2);
    z-index: 99999;
}

.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h3 {
    color: #005eff;
    margin-bottom: 18px;
    font-size: 20px;
}

.mega-column a {
    display: block;
    color: #333;
    padding: 10px 0;
    transition: .3s;
    font-weight: 500;
}

.mega-column a:hover {
    padding-right: 12px;
    color: #005eff;
}

.mega-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-image img {
    max-width: 240px;
    animation: float 5s infinite;
}

/*============================
HERO IMAGE EFFECT
============================*/

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,#2b8dff55,transparent);
    filter: blur(20px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 720px;
    animation: float 5s ease infinite;
    position: relative;
    z-index: 5;
}

/*============================
GLOW CIRCLES
============================*/

.circle {
    position: absolute;
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

.circle.one {
    width: 420px;
    height: 420px;
    border: 2px dashed rgba(255,255,255,.08);
}

.circle.two {
    width: 520px;
    height: 520px;
    border: 2px solid rgba(70,150,255,.15);
    animation-duration: 20s;
}

.circle.three {
    width: 620px;
    height: 620px;
    border: 1px dashed rgba(255,255,255,.05);
    animation-duration: 35s;
}

@keyframes rotate {
from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,.08);
}

.hero-text h1 {
    font-size: 68px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text h1 span {
    background: linear-gradient(90deg,#53a6ff,#ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline {
    display: inline-flex;
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    color: #fff;
    transition: .3s;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/*=================================
MODERN PRODUCT CARD
=================================*/

.card {
    background: white;
    color: #222;
    border-radius: 25px;
    overflow: hidden;
    transition: .45s;
    position: relative;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-18px);
    box-shadow: 0 35px 70px rgba(0,0,0,.25);
}

.card-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.card:hover img {
    transform: scale(1.12);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(

transparent,

rgba(0,0,0,.35)

);
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-number {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    background: #1f6bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 15px 30px rgba(0,90,255,.35);
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #222;
}

.card-content p {
    color: #666;
    line-height: 2;
    margin-bottom: 25px;
}

.card-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #005eff;
    transition: .3s;
}

.card:hover a {
    gap: 18px;
}

.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 5px;
    background: #1f6bff;
    transition: .45s;
}

.card:hover::after {
    width: 100%;
}

/*============================
LOGO SLIDER
============================*/

.logo-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 55px;
    animation: logoMove 30s linear infinite;
    align-items: center;
}

.logo-track img {
    height: 70px;
    width: 150px;
    object-fit: contain;
    opacity: 1;
    transition: .35s;
}

.logo-track img:hover {
    transform: scale(1.1);
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes logoMove {
0%{
transform:translateX(0);
}
100%{
transform:translateX(-33.3333%);
}
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
}

.logo-slider::before {
    right: 0;
    background: linear-gradient(to left,#071f52,transparent);
}

.logo-slider::after {
    left: 0;
    background: linear-gradient(to right,#071f52,transparent);
}

/*==================================
GLASS COUNTER
==================================*/

.counter {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.counter .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.counter-card:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,.08);
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.counter-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    background: linear-gradient(135deg,#2b8dff,#005eff);
    color: white;
    box-shadow: 0 15px 35px rgba(0,80,255,.3);
}

.counter-card h2 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(#6dc0ff,#ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-card span {
    font-size: 18px;
    color: #d5ddee;
    letter-spacing: 1px;
}

.counter-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(70,150,255,.15);
    filter: blur(35px);
    transition: .5s;
}

.counter-card:hover::before {
    transform: scale(1.3);
}

.counter-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 0;
    background: #42a5ff;
    transition: .4s;
}

.counter-card:hover::after {
    width: 100%;
}

.counter-card {
    position: relative;
    padding: 45px;
    border-radius: 25px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    overflow: hidden;
    transition: .4s;
    opacity: 0;
    transform: translateY(60px);
    animation: counterFade .8s forwards;
}

.counter-card:nth-child(1) {
    animation-delay: .2s;
}

.counter-card:nth-child(2) {
    animation-delay: .4s;
}

.counter-card:nth-child(3) {
    animation-delay: .6s;
}

.counter-card:nth-child(4) {
    animation-delay: .8s;
}

@keyframes counterFade {
to{

opacity:1;

transform:none;

}
}

.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    font-weight: bold;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,.1);
    z-index: 999;
}

.slider-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #53a6ff;
    animation: progress 5s linear infinite;
}

@keyframes progress {
0%{

width:0;

}

100%{

width:100%;

}
}

.swiper-slide {
    opacity: .2;
    transition: 1s;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-active .hero-text {
    animation: slideText 1s;
}

.swiper-slide-active img {
    animation: zoomImage 1.2s;
}

@keyframes slideText {
from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:none;

}
}

@keyframes zoomImage {
from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}
}

/*=========================
ABOUT NEW
=========================*/

.about {
    padding: 140px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #1143a8;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 2px;
}

.about h2 {
    font-size: 52px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about h2 span {
    color: #4ca9ff;
}

.about p {
    font-size: 18px;
    line-height: 2.2;
    color: #d7d7d7;
    margin-bottom: 35px;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-item i {
    color: #42a5ff;
    font-size: 22px;
}

.about-item span {
    font-size: 17px;
}

.image-box img {
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(135deg,#005eff,#42a5ff);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0,90,255,.35);
}

.experience h3 {
    font-size: 46px;
}

.experience span {
    font-size: 16px;
}

.image-box {
    position: relative;
    animation: floatImage 5s ease infinite;
}

@keyframes floatImage {
0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}
}

/*==========================
SERVICES
==========================*/

.services {
    padding: 140px 0;
    background: #05163f;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.section-title span {
    display: inline-block;
    padding: 10px 20px;
    background: #0f3b96;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title p {
    color: #cfd6ea;
    line-height: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.service-card {
    position: relative;
    padding: 45px;
    background: rgba(255,255,255,.04);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-15px);
    background: #0b2f78;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    font-size: 34px;
    margin-bottom: 30px;
    transition: .4s;
}

.service-card:hover .service-icon {
    transform: rotate(12deg) scale(1.1);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card p {
    color: #d6d6d6;
    line-height: 2;
    margin-bottom: 30px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #53a6ff;
    transition: .3s;
}

.service-card:hover a {
    gap: 18px;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(60,160,255,.15);
    top: -130px;
    left: -130px;
    filter: blur(40px);
    opacity: 0;
    transition: .5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 0;
    background: #42a5ff;
    transition: .4s;
}

.service-card:hover::after {
    width: 100%;
}

/*==========================
PROJECTS
==========================*/

.projects {
    padding: 140px 0;
    background: #071f52;
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.project-filter button {
    padding: 14px 28px;
    border: none;
    background: #0d357f;
    color: white;
    border-radius: 40px;
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
}

.project-filter button.active,
.project-filter button:hover {
    background: #2b8dff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .7s;
}

.project-card:hover img {
    transform: scale(1.12);
}

.project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    padding: 35px;
    background: linear-gradient(

transparent,

rgba(0,0,0,.92)

);
    transition: .5s;
}

.project-card:hover .project-info {
    bottom: 0;
}

.project-info span {
    color: #53a6ff;
    font-size: 14px;
    letter-spacing: 2px;
}

.project-info h3 {
    margin: 15px 0;
    font-size: 30px;
}

.project-info a {
    display: inline-block;
    margin-top: 10px;
    color: white;
    font-weight: bold;
}

.project-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(50,140,255,.2);
    filter: blur(40px);
    opacity: 0;
    transition: .4s;
    z-index: 2;
}

.project-card:hover::before {
    opacity: 1;
}

/*==================================
RESULTS BAR + CATALOG DOWNLOAD
==================================*/

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    color: #b9c6e6;
    font-size: 15px;
}

.catalog-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg,#2d80ff,#005eff);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
}

.catalog-download i {
    font-size: 18px;
}

.catalog-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,98,255,.35);
}

/*==================================
CATALOG CARDS (from official catalog)
==================================*/

.catalog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.catalog-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,10,40,.25);
    transition: .4s;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,10,40,.35);
}

.catalog-image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.08);
}

.catalog-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,20,60,.65);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}

.catalog-content {
    padding: 40px;
}

.catalog-content h3 {
    font-size: 26px;
    color: #071f52;
    margin-bottom: 15px;
}

.catalog-content>p {
    color: #5b6785;
    line-height: 2;
    margin-bottom: 25px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e7ecf7;
}

.spec-table tr:nth-child(even) {
    background: #f4f7fd;
}

.spec-table th,
.spec-table td {
    padding: 12px 18px;
    font-size: 14px;
    text-align: right;
}

.spec-table th {
    color: #071f52;
    font-weight: 600;
    width: 45%;
    border-left: 1px solid #e7ecf7;
}

.spec-table td {
    color: #445;
}

.catalog-content .btn {
    padding: 12px 28px;
}

@media (max-width:992px) {
    .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-image {
        min-height: 220px;
    }
}

@media (max-width:576px) {
    .catalog-content {
        padding: 25px;
    }

    .spec-table th,
    .spec-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@keyframes ctaFloat {
0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}
}

/*==========================
CTA SECTION
==========================*/

.cta-section {
    padding: 120px 0;
    background: #071f52;
}

.cta-box {
    animation: ctaFloat 6s ease-in-out infinite;
    position: relative;
    padding: 70px;
    border-radius: 35px;
    overflow: hidden;
    background: linear-gradient(135deg,#005eff,#2d80ff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    top: -180px;
    left: -180px;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    bottom: -120px;
    right: -120px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content span {
    letter-spacing: 2px;
    font-size: 14px;
    opacity: .8;
}

.cta-content h2 {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.5;
}

.cta-content p {
    line-height: 2;
    max-width: 650px;
    opacity: .9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    background: white;
    color: #005eff;
}

.cta-buttons .btn:hover {
    background: #eef5ff;
}

.cta-buttons .btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #005eff;
}

/*====================================
FOOTER
====================================*/

.footer {
    background: #04132f;
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 180px;
    margin: 0 auto 30px;
    display: block;
}

.footer p {
    line-height: 2;
    color: #bfc8da;
}

.footer h3 {
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.footer h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #2b8dff;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer ul a {
    color: #cfd6ea;
    transition: .3s;
}

.footer ul a:hover {
    color: white;
    padding-right: 10px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0b2f78;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: .3s;
}

.socials a:hover {
    background: #2b8dff;
    transform: translateY(-6px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: #0d357f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #53a6ff;
}

.newsletter {
    display: flex;
    margin-top: 25px;
    overflow: hidden;
    border-radius: 50px;
}

.newsletter input {
    flex: 1;
    padding: 16px;
    border: none;
    outline: none;
    background: white;
}

.newsletter button {
    padding: 0 28px;
    border: none;
    background: #2b8dff;
    color: white;
    cursor: pointer;
    transition: .3s;
}

.newsletter button:hover {
    background: #005eff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 30px 0;
    text-align: center;
    color: #8fa3c8;
}

/*=========================
PRELOADER
=========================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #04183f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: .8s;
}

.loader {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,.08);
    border-top: 5px solid #3d98ff;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
0%{

transform:rotate(0);

}

100%{

transform:rotate(360deg);

}
}

.preloader-hide {
    opacity: 0;
    visibility: hidden;
}

.loader img {
    width: 90px;
    position: absolute;
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
0%{

transform:scale(1);

}

50%{

transform:scale(1.12);

}

100%{

transform:scale(1);

}
}

/*==========================
CUSTOM CURSOR
==========================*/

body {
    font-family: "IRANSansX", sans-serif;
    direction: rtl;
    background: #0c2b6e;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

.cursor {
    position: fixed;
    width: 45px;
    height: 45px;
    border: 2px solid #42a5ff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: width .3s,
height .3s,
border .3s,
background .3s,
transform .08s linear;
    z-index: 999999;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #42a5ff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 1000000;
}

.cursor.active {
    width: 75px;
    height: 75px;
    background: rgba(66,165,255,.15);
    border-color: white;
}

/*====================
SCROLL PROGRESS
====================*/

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,.08);
    z-index: 999999;
}

.scroll-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,#005eff,#42a5ff);
}

/*==========================
TESTIMONIALS
==========================*/

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    background: rgba(60,160,255,.15);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: .4s;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

@media (max-width:768px) {
    .cards {
        grid-template-columns: 1fr;
    }

}

.quote i {
    font-size: 20px;
    color: #999;
}

.swiper-pagination {
    position: absolute !important;
    bottom: 20px;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #ffb100;
    opacity: 1;
}

.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 0;
    background: linear-gradient(120deg,#04183f 10%,#083b92 100%);
    overflow: hidden;
    height: auto;
}



.hero .swiper {
    height: auto;
}

.testimonials {
    padding: 120px 0;
    background: #061a47;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    position: relative;
    padding: 35px;
    border-radius: 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
    color: #fff;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.quote {
    font-size: 42px;
    color: #42a5ff;
    margin-bottom: 15px;
}

.testimonial-card p {
    line-height: 2;
    color: #d6d6d6;
    margin-bottom: 25px;
    font-size: 15px;
    margin: 16px 0;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2b8dff;
}

.client h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.client span {
    color: #9fb5da;
    font-size: 14px;
}

/* responsive */

@media (max-width:992px) {
    .cards {
        grid-template-columns: repeat(2,1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}

