﻿


@font-face {
    font-family: 'iran-sans';
    font-weight: normal;
    src: url("../css/dist/fonts/iran-sans.woff") format("woff");
}

@font-face {
    font-family: 'iran-sans';
    font-weight: bold;
    src: url("../css/dist/fonts/iran-sans-bold.woff") format("woff");
}

@font-face {
    font-family: 'iran-sans';
    font-weight: normal;
    src: url("../css/dist/fonts/iran-sans.woff") format("woff");
}

body {
    box-sizing: border-box;
    font-family: iran-sans;
}

.font17 {
    font-size:18px;
}

.topmenufont {
    font-size: 28px;
    font-weight: bold;
}
.padding3 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}


.style1 {
    --tw-gradient-to: #ff2f2f var(--tw-gradient-to-position) !important;
    --tw-gradient-from: #1a1818 var(--tw-gradient-from-position) !important;
}

.style2 {
    --tw-gradient-to: #ff7800 var(--tw-gradient-to-position) !important;
    --tw-gradient-from: #de9d4a var(--tw-gradient-from-position) !important;
}
.hero-bg {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
   /*  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;*/
        background: url('back.png') no-repeat center center;
        background-size: cover;
        opacity: 0.6;
    }

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}
.font30 {
    font-size: 30px !important;
}

.font25 {
    font-size: 25px !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hover-scale {
    transition: transform 0.3s ease;
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

.video-placeholder {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .play-button:hover {
        background: white;
        transform: scale(1.1);
    }

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #667eea;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    animation: scaleIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scaleIn {
    from {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
