
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
        }
        
        @font-face {
            font-family: 'font01';
            src: url(../font/Vazirmatn-Light.ttf) format('truetype'),url(../font/Vazirmatn-Light.woff2) format('woof');
        }

        @font-face {
            font-family: 'font02';
            src: url(../font/Vazirmatn-Bold.ttf) format('truetype'), url(../font/Vazirmatn-Bold.woff2) format('woof');
        }


        @font-face {
            font-family: 'logofont';
            src: url(../font/saber.ttf) format('truetype');
        }

        body {
            line-height: 1.8;
            overflow-x: hidden;
            text-align: right;
            font-family: 'font01';
            direction: rtl;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        

        header {
            background-color: rgba(49, 49, 49, 0.8);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            direction: ltr;
            font-family: 'font01';
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header img {
            width: 68px ;
            height: 68px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 25px;
            font-weight: 700;
            color: #F5F5F7;
            text-decoration: none;
        }
        .logo span {
            font-family: 'logofont';
        }
        
        #menu {
            display: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            direction: rtl;
        }
        
        nav ul li {
            margin-right: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #F5F5F7;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
            font-family: 'font01';
        }
        
        nav ul li a:hover {
            color: #F97316;
        }
        
        .btn-register {
            background-color: #F97316;
            color: #F5F5F7;
            padding: 9px 25px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .btn-register:hover {
            background-color: #FFEBD4;
            transform: translateY(-2px);
            /* box-shadow: 0 5px 15px rgba(75, 157, 169, 0.1); */
            color: #0C0C0C;
        }
        
        .btn-register:focus {
            outline: 2px solid #F97316;
        }

        .hero {
            background-color: #313131;
            padding: 10px 0;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            padding-left: 40px;
        }

        @keyframes heroimganimation {
            from{
                transform: rotateY(0deg);
            }
            to{
                transform: rotateY(40deg);
            }
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            /* position: relative; */
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
            transition: all 1.5s;
            animation: heroimganimation  3s  infinite alternate linear;
        }

        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .future{
            color: #F97316;
            font-family: 'font02';
        }
        .hand{
            color: #FD893B;
            font-family: 'font02';
        }
        
        .hero p {
            font-size: 18px;
            color: #F5F5F7;
            margin-bottom: 30px;
            max-width: 500px;
            font-family: 'font01';
            line-height: 1.8;
            text-align: justify;
        }
        .iPhone {
            color: #FD893B;
            font-size: 30px;
            max-width: 500px;
            font-family: 'font01';
        }
        
        .btn-see-more {
            display: inline-block;
            background-color: #F97316;
            color: #313131;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #F97316;
            font-family: 'font01';
        }
        
        .btn-see-more:hover {
            background-color: transparent;
            color: #F97316;
        }

        .btn-see-more :focus {
            outline: 2px solid #F5F5F7;
        }
        
        /* Features Section*/

        .features {
            padding: 100px 0;
        }

        .section-title {
            font-family: 'font02';
            font-size: 30px;
            color: #313131;
            text-align: center;
            font-weight: bold;
            padding: 10px;
        }
    
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .feature-card {         
            display: flex;
            flex: 1;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 250px;
            background-color: #FFFFFF;
            padding: 29px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            /* gap: 10px; */
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1);
        }
        
        .feature-icon {
            display:flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
            width: 68px;
            height: 68px;
            font-size: 50px;
            color: #F5F5F7;
            border-radius: 16px;
            background-color: #313131;
        }
        

        .feature-title {
            font-size: 22px;
            margin-bottom: 15px;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            color: #313131;
            font-family: 'font01';
        }

        .persian-text{
            color: #313131;
            font-family: 'font01';
            font-weight: 900;
            line-height: 1.8;
            text-align: justify;
        }
        
        /* Contact Section*/

        .contact {
            padding: 100px 0;
            background-color: #313131;
            font-family: 'font01';
        }
        
        .contact-container {
            display: flex;
            flex: 1;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .section-title{
            font-family: 'font01';
            color: #313131;
        }


        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 600;
            font-family: 'font01';
            color: #F97316;
        }
        
        .form-group input,.form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #FED7AA;
            border-radius: 8px;
            transition: all 0.3s;
            background-color: #FFEBD4;
            font-family: 'font01';
            font-size: 16px;
            color: #313131;
        }
        
        .form-group input:focus,.form-group textarea:focus {
            outline: none;
            border: 2px solid #F97316;
            box-shadow: 0 0 5px #F97316;
        }

        .form-group input:invalid:not(:placeholder-shown),.form-group textarea:invalid:not(:placeholder-shown) {
            border-color: #FB2C36;
        }
        
        .form-group input:valid:not(:placeholder-shown),.form-group textarea:valid:not(:placeholder-shown) {
            border-color: #2BA675;
        }
        
        .btn-submit {
            background-color: #F97316;
            color: #F5F5F7;
            border: none;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-size: 16px;
            font-family: 'font01';
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            border:1px solid #F97316;
            background-color: #FFEBD4;
            box-shadow: 0 0 5px #F97316;
            color: #313131;
        }
        .btn-submit:focus {
            outline: 2px solid #F97316;
        }
        

        .contact-info h3 {
            font-family: 'font01';
            color: #F97316;
            font-size: 20px;
        }

        .contact-info-text{
            color: #FF9D56;
            font-size: 18px;
            font-family: 'font01';
            text-align: justify;
            line-height: 1.8;
        }

        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: #F97316;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            color: #313131;
            font-size: 25px;
            text-decoration: none;
        }

        .contact-item h4{
            color: #FE9348;
            font-size: 18px;
            font-family: 'font01';
        }

        .contact-item p{
            color: #FE9348;
            font-size: 20px;
            font-family: 'font01';
        }

        .Storename span{
            font-family: 'Times New Roman', Times, serif;
            font-size: 21px;
        }

        .emaill p {
            font-family: 'Times New Roman', Times, serif;
            font-size: 21px;
        }
        
        
        /* Footer  Section */

        footer {
            background-color: #F97316;
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: flex;
            flex: 1;
            flex-direction: column;
            align-items: center;
        }
        
        .social-icons {
            display: flex;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .social-icon {
            width: 46px;
            height: 46px;
            background-color: #313131;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px 10px;
            color: #F97316;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: #FFCD9C;
            color: #313131;
            transform: translateY(-5px);
        }
        
        .copyright {
            color: #313131;
            font-size: 14px;
            margin-top: 20px;
            text-align: justify;
            line-height: 1.8;
        }

        .copyright p {
            font-family: 'font01';
            text-align: center;
        }


    
        
       