/*==================================================
SOKNA WEBSITE V2
Author : ChatGPT
Version : 2.0
==================================================*/

/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    direction:rtl;

    font-family:'Vazirmatn',sans-serif;

    background:#F7F8FA;

    color:#222;

    line-height:1.8;

    overflow-x:hidden;

}

/*==========================
ROOT COLORS
==========================*/

:root{

    --primary:#0B1F3A;

    --primary-light:#14345F;

    --secondary:#F58220;

    --secondary-dark:#DB6C0F;

    --white:#ffffff;

    --gray:#777777;

    --light:#F7F8FA;

    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/*==========================
TYPOGRAPHY
==========================*/

h1{

    font-size:clamp(38px,5vw,70px);

    font-weight:800;

    color:var(--primary);

}

h2{

    font-size:clamp(28px,4vw,46px);

    font-weight:700;

    color:var(--primary);

}

h3{

    font-size:24px;

    font-weight:700;

}

h4{

    font-size:20px;

    font-weight:600;

}

p{

    color:#555;

}

/*==========================
LINKS
==========================*/

a{

    text-decoration:none;

    transition:var(--transition);

    color:inherit;

}

/*==========================
IMAGES
==========================*/

img{

    width:100%;

    display:block;

}

/*==========================
LIST
==========================*/

ul{

    list-style:none;

}

/*==========================
CONTAINER
==========================*/

.container{

    width:min(92%,1400px);

    margin:auto;

}

/*==========================
SECTION
==========================*/

section{

    padding:100px 0;

    position:relative;

}

/*==========================
SECTION TITLE
==========================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-subtitle{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:1px;

    display:inline-block;

    margin-bottom:15px;

    text-transform:uppercase;

}

.section-header p{

    max-width:700px;

    margin:20px auto 0;

}

/*==========================
BUTTONS
==========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 12px 30px rgba(245,130,32,.30);

}

.btn-primary:hover{

    background:var(--secondary-dark);

    transform:translateY(-5px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/*==========================
CARD
==========================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eee;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary-dark);

}

/*==========================
ANIMATION
==========================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:1s;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

/*==========================
BACKGROUND
==========================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(245,130,32,.08),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(11,31,58,.08),
    transparent 40%);

    pointer-events:none;

    z-index:-1;

}
/*==================================================
HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    right:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:18px 0;

    background:rgba(11,31,58,.18);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.header.scrolled{

    background:#0B1F3A;

    padding:10px 0;

    box-shadow:0 10px 35px rgba(0,0,0,.18);

}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==================
LOGO
==================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:70px;

    width:auto;

    transition:.35s;

}

.header.scrolled .logo img{

    height:58px;

}

/*==================
MENU
==================*/

.navbar{

    display:flex;

    align-items:center;

}

.menu{

    display:flex;

    gap:34px;

}

.menu li{

    position:relative;

}

.menu a{

    color:#ffffff;

    font-weight:600;

    font-size:15px;

    transition:.35s;

    position:relative;

}

.menu a::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-8px;

    width:0;

    height:3px;

    border-radius:30px;

    background:#F58220;

    transition:.35s;

}

.menu a:hover{

    color:#F58220;

}

.menu a:hover::after{

    width:100%;

}

/*==================
HEADER BUTTONS
==================*/

.header-actions{

    display:flex;

    align-items:center;

    gap:15px;

}

.call-btn{

    padding:12px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    color:#fff;

    display:flex;

    align-items:center;

    gap:8px;

    transition:.35s;

}

.call-btn:hover{

    background:#F58220;

}

.quote-btn{

    padding:12px 24px;

    border-radius:40px;

    background:#F58220;

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

    background:#DB6C0F;

}

/*==================
MOBILE BUTTON
==================*/

.menu-toggle{

    display:none;

    border:none;

    background:none;

    cursor:pointer;

    color:#fff;

    font-size:28px;

}

/*==================
ACTIVE MENU
==================*/

.menu a.active{

    color:#F58220;

}

.menu a.active::after{

    width:100%;

}

/*==================
HEADER ANIMATION
==================*/

@keyframes headerShow{

    from{

        opacity:0;

        transform:translateY(-40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.header{

    animation:headerShow .8s ease;

}
/*==================================================
HERO SECTION
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#07182D 0%,#0B1F3A 45%,#14345F 100%);

    padding-top:120px;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/pattern.png");

    opacity:.05;

    background-size:350px;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to left,
    rgba(11,31,58,.92),
    rgba(11,31,58,.65));

}

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-text{

    color:#fff;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(245,130,32,.18);

    color:#F58220;

    border:1px solid rgba(245,130,32,.4);

    margin-bottom:25px;

    font-weight:700;

}

.hero h1{

    color:#fff;

    font-size:72px;

    line-height:1.1;

    margin-bottom:10px;

}

.hero h2{

    color:#fff;

    font-size:34px;

    font-weight:600;

    margin-bottom:25px;

}

.hero p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#fff;

    font-weight:500;

}

.hero-features i{

    color:#F58220;

}

.hero-image{

    position:relative;

    animation:floatImage 5s ease-in-out infinite;

}

.hero-image img{

    max-width:100%;

    filter:drop-shadow(0 40px 60px rgba(0,0,0,.35));

}

/*==========================
SCROLL DOWN
==========================*/

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:32px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
STATISTICS
==================================================*/

.statistics{

    margin-top:-70px;

    position:relative;

    z-index:5;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    border-radius:22px;

    text-align:center;

    padding:40px 20px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.stat-box h3{

    font-size:48px;

    color:#F58220;

    margin-bottom:10px;

    font-weight:800;

}

.stat-box span{

    color:#666;

    font-weight:600;

}
/*==================================================
ABOUT
==================================================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:-30px;

    left:-30px;

    width:180px;

    height:180px;

    border-radius:50%;

    background:#F58220;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 45px rgba(245,130,32,.35);

}

.experience-box h2{

    color:#fff;

    font-size:52px;

    margin-bottom:5px;

}

.about-content h2{

    margin:20px 0;

}

.about-items{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.about-item i{

    width:60px;

    height:60px;

    background:#0B1F3A;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    font-size:22px;

}

.about-item h4{

    margin-bottom:8px;

}

/*==================================================
PRODUCTS
==================================================*/

.products{

    background:#F7F8FA;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));

    gap:35px;

}

.product-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.product-image{

    overflow:hidden;

    background:#fff;

}

.product-image img{

    transition:.45s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

.product-body{

    padding:28px;

}

.product-body h3{

    margin-bottom:12px;

    color:#0B1F3A;

}

.product-body p{

    margin-bottom:25px;

}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.product-btn{

    background:#F58220;

    color:#fff;

    padding:12px 22px;

    border-radius:40px;

    transition:.35s;

}

.product-btn:hover{

    background:#DB6C0F;

}

.product-code{

    color:#777;

    font-weight:700;

}

/*==================================================
FEATURES
==================================================*/

.features{

    background:#fff;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:22px;

    text-align:center;

    padding:45px 30px;

    transition:.35s;

    border:1px solid #ECECEC;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.feature-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    background:#0B1F3A;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    transition:.35s;

}

.feature-card:hover i{

    background:#F58220;

    transform:rotate(10deg);

}

.feature-card h3{

    margin-bottom:15px;

    color:#0B1F3A;

}
/*==================================================
PROJECTS
==================================================*/

.projects{

    background:#F7F8FA;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.project-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(11,31,58,.95),
    rgba(11,31,58,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h3{

    color:#fff;

    margin-bottom:8px;

}

/*==================================================
QUOTE
==================================================*/

.quote{

    background:linear-gradient(135deg,#0B1F3A,#14345F);

    color:#fff;

}

.quote .section-header h2,

.quote .section-header p{

    color:#fff;

}

.quote-form{

    max-width:900px;

    margin:auto;

}

.form-group{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;

}

.quote-form input,

.quote-form select,

.quote-form textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:16px;

    font-family:inherit;

    outline:none;

}

.quote-form textarea{

    resize:none;

    margin-bottom:20px;

}

.form-field{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.form-field label{

    color:#fff;

    font-size:14px;

    font-weight:500;

}

.form-note{

    min-height:20px;

    margin:-6px 0 16px;

    font-size:14px;

}

.form-note.success{

    color:#4CD137;

}

.form-note.error{

    color:#ff6b6b;

}

/*==================================================
CONTACT
==================================================*/

.contact{

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#F58220;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.contact-map iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:22px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#07182D;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:20px;

    color:#fff;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer li{

    color:#d6d6d6;

}

.footer a:hover{

    color:#F58220;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;

    text-align:center;

    color:#aaa;

}

/*==================================================
WHATSAPP
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

}

/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    left:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#F58220;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    display:none;

    transition:.35s;

    z-index:999;

}

#backToTop:hover{

    background:#DB6C0F;

    transform:translateY(-5px);

}

/*==================================================
END OF FILE
==================================================*/