        body {
            box-sizing: border-box;
            direction: rtl;
        }
        
        /* Intro Screen Styles */
        .intro-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 1s ease-out, visibility 1s ease-out;
        }
        
        .intro-screen.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .intro-logo {
            position: relative;
            text-align: center;
            z-index: 2;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.4;
            animation: logoFadeIn 3s ease-out forwards;
        }
        
        .intro-logo h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            letter-spacing: 1px;
            margin: 0;
        }
        
        .intro-logo p {
            color: white;
            font-size: 1.5rem;
            margin-top: 1rem;
            opacity: 0.4;
            animation: logoFadeIn 3s ease-out forwards;
        }
        
        .flask-logo {
            width: 120px;
            height: 120px;
            color: white;
        }
        
        .loading-percentage {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 1rem;
            opacity: 0.7;
        }
        
        @keyframes logoFadeIn {
            0% { opacity: 0.4; }
            100% { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .loading-slider {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            background-size: 200% 100%;
            animation: slideLoad 2s ease-in-out infinite;
            width: 100%;
        }
        
        @keyframes slideLoad {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        /* Scroll Animation Styles */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        
        .scroll-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scroll-animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }
        
        .scroll-animate-left.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scroll-animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        
        .scroll-animate-right.animate-in {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scroll-animate-fade {
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        .scroll-animate-fade.animate-in {
            opacity: 1;
        }
        
        .intro-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 0.5s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 1.5s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 0.8s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 1.8s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 2.8s; }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: scale(1);
            }
            90% {
                opacity: 1;
                transform: scale(1);
            }
            100% {
                transform: translateY(-100px) scale(0);
                opacity: 0;
            }
        }
        
        .main-content {
            opacity: 0;
            transition: opacity 1s ease-in;
        }
        
        .main-content.show {
            opacity: 1;
        }
        
        @import url('https://cdn.jsdelivr.net/gh/rastikerdar/yekan@v2.0/dist/font-face.css');
        
        * { font-family: 'Yekan', Tahoma, Arial, sans-serif; }
        .font-yekan { font-family: 'Yekan', Tahoma, Arial, sans-serif; }
        .font-inter { font-family: 'Yekan', Tahoma, Arial, sans-serif; }
        
        .hero-slide {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .parallax-bg {
             background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
        }
        
        .parallax-vision {
             background: linear-gradient(rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8)); 
            position: relative;

        }
        
        .parallax-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/company5.jpg'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .slide-1 { 
            background:  url('images/company1.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .slide-2 { 
            background:  url('images/tanker3.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .slide-3 { 
            background:  url('images/jalaseh.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .mobile-menu {
            display: none;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }
        }
        
        .icon-circle {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .award-slide {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #e5e7eb;
        }
        
        .nav-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            backdrop-filter: blur(10px);
        }
        
        /* Dropdown Menu Styles */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

        .page-content {
            display: none;
        }
        
        .page-content.active {
            display: block;
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
        }
        
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid #e5e7eb;
        }
        
        .hero-slider-container:hover .hero-nav-arrow {
            opacity: 1;
        }
        
        .hero-nav-arrow {
            backdrop-filter: blur(10px);
        }
        
        .product-image-container:hover .product-overlay {
            transform: translateY(0);
        }
        
        .tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            pointer-events: none;
        }
        
        .tooltip.show {
            opacity: 1;
            visibility: visible;
        }
        
        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
        }
        
        .news-thumbnail {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .news-thumbnail:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .map-container {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-info-sidebar {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: fit-content;
        }



/* کاهش اندازه فونت عناوین sections */
    .section-title {
        font-size: 2.25rem !important; /* کاهش از 4xl/5xl به 2.25rem */
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.875rem !important; /* کاهش در موبایل */
        }
    }


 /* افزایش عرض زیرمنوی محصولات */
    .group:nth-child(3) .dropdown-menu {
        width: 280px !important; /* افزایش عرض از 48 به 80 واحد */
    }
    
    /* استایل برای پارالاکس جدید */
    .parallax-about {
        background: linear-gradient(rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8));
        position: relative;
    }
    
    .parallax-about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/erlen2.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* کاور تیره برای پارالاکس چشم‌انداز */
    .parallax-vision::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* کاور تیره با شفافیت 50% */
        z-index: 1;
    }
    
    /* اطمینان از اینکه متن بالای کاور قرار می‌گیرد */
    .parallax-vision > * {
        position: relative;
        z-index: 2;
    }

  /* تغییر اندازه فونت عنوان صفحات تماس */
    .contact-page-title {
        font-size: 2.5rem !important; /* کاهش از 4xl/6xl به 2.5rem */
    }
    
    @media (max-width: 768px) {
        .contact-page-title {
            font-size: 2rem !important;
        }
    }



 
    /* استایل برای نوار بالای منو */
    .top-bar {
        background: #1a202c; /* رنگ تیره ثابت */
        color: white;
        padding: 8px 0;
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: fixed; /* تغییر به fixed */
        top: 0; /* چسبیدن به بالای صفحه */
        left: 0;
        right: 0;
        z-index: 1001; /* بالاتر از منوی اصلی */
        width: 100%;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar-contact {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .top-bar-social {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .top-bar-icon {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-2px);
    }
    
    .facebook { background: #3b5998; }
    .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .linkedin { background: #0077b5; }
    
    /* تنظیم margin-top برای منوی اصلی */
    .nav-fixed {
        top: 40px !important; /* ارتفاع نوار بالای منو */
    }
    
    /* تنظیم padding-top برای بدنه اصلی */
    .main-content {
        padding-top: 120px !important; /* ارتفاع نوار بالای منو + منوی اصلی */
    }
    
    /* حذف margin-top اضافی از صفحات */
    .page-content.active {
        margin-top: 0 !important;
    }
    
    /* تنظیم margin-top برای اسلایدر */
    .hero-slider-container {
        margin-top: 0 !important; /* حذف margin-top از اسلایدر */
    }
    
    @media (max-width: 768px) {
        .top-bar {
            display: none;
        }
        .nav-fixed {
            top: 0 !important;
        }
        .main-content {
            padding-top: 80px !important;
        }
    }


 /* استایل برای آیتم‌های زمینه کاربرد */
    .application-item {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .application-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }
    
    .application-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        border-radius: 12px; /* تغییر از دایره به مربع با گوشه‌های گرد */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: white;
        font-size: 2rem;
        font-weight: bold;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    /* افکت اضافی برای زیبایی بیشتر مربع */
    .application-number::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
    
    .application-number::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: -15px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .application-content {
        flex: 1;
    }
    
    .application-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #1e40af;
        margin-bottom: 0.5rem;
    }
    
    .application-description {
        color: #6b7280;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    @media (max-width: 768px) {
        .application-item {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .application-number {
            width: 70px;
            height: 70px;
            font-size: 1.75rem;
            border-radius: 10px;
        }
    }
    




/* متغیرهای CSS */
  :root {
    /* تم پیش‌فرض (آبی) */
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #93c5fd;
    --text-on-primary: #ffffff;
    
    /* رنگ‌های منو */
    --nav-bg: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --nav-text: var(--text-on-primary);
    
    /* رنگ‌های عناوین */
    --title-color: var(--primary-dark);
    --section-title-color: var(--primary-color);
  }

  /* تم سبز */
  [data-theme="green"] {
    --primary-color: #10b981;
    --primary-dark: #047857;
    --primary-light: #6ee7b7;
  }

  /* تم بنفش */
  [data-theme="purple"] {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #c4b5fd;
  }

  /* تم نارنجی */
  [data-theme="orange"] {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fcd34d;
  }


[data-theme="zereshki"] {
    --primary-color: #8b4b5f;
    --primary-dark: #6a2f42;
    --primary-light: #e89cb4;
  }


  /* استایل‌های مبتنی بر متغیرها */
  .nav-fixed {
    background: var(--nav-bg);
    color: var(--nav-text);
  }

  .section-title {
    color: var(--section-title-color);
  }

  .application-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  }

  /*
  .top-bar {
    background: var(--primary-dark);
  }
  */

  .btn-primary {
    background: var(--primary-color);
    color: var(--text-on-primary);
  }

  .btn-primary:hover {
    background: var(--primary-dark);
  }




/* end of theme color */




   /* استایل برای بخش تخصص ما */
    .expertise-icon-container {
      position: relative;
      width: 300px;
      height: 300px;
      margin: 0 auto 2rem;
      border-radius: 50%;
      overflow: hidden;
    }
    
    .expertise-icon-circle {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
      overflow: hidden;
      border: 4px solid #e5e7eb;
    }
    
    .expertise-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      flex-direction: column;
      justify-content: center; /* تغییر به مرکز عمودی */
      align-items: center;
      padding: 2rem;
      transform: translateY(100%);
      transition: all 0.5s ease;
      text-align: center;
    }
    
    .expertise-icon-container:hover .expertise-overlay {
      transform: translateY(0);
    }
    
    .expertise-overlay-title {
      font-size: 1.3rem;
      font-weight: bold;
      color: white;
      margin-bottom: 1rem;
      text-align: center;
      font-family: 'Yekan', Tahoma, Arial, sans-serif;
      text-decoration: none;
      width: 100%;
    }
    
    .expertise-overlay-title:hover {
      color: #93c5fd;
    }
    
    .expertise-yellow-line {
      width: 50%;
      height: 3px;
      background: #fbbf24;
      margin: 0 auto 1rem;
    }
    
    .expertise-overlay-description {
      color: #e5e7eb;
      font-size: 0.9rem;
      text-align: center;
      line-height: 1.6;
      font-family: 'Yekan', Tahoma, Arial, sans-serif;
      width: 100%;
    }

    /* استایل برای تصاویر داخل آیکن */
    .expertise-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    /* استایل فال‌بک برای زمانی که تصویر لود نمی‌شود */
    .expertise-fallback {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      border-radius: 50%;
      color: white;
    }

    /* استایل برای محتوای اصلی (کامنت شده) */
    .expertise-main-content {
      display: none;
    }


/* استایل برای نوار بالای منو */
    .top-bar {
        background: #1a202c;
        color: white;
        padding: 8px 0;
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        width: 100%;
    }
    
    .top-bar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar-contact {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .top-bar-social {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .top-bar-icon {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-2px);
    }
    
    .facebook { background: #3b5998; }
    .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .linkedin { background: #0077b5; }
    
    /* تنظیم margin-top برای منوی اصلی */
    .nav-fixed {
        top: 40px !important;
    }
    
    /* تنظیم padding-top برای بدنه اصلی */
    .main-content {
        padding-top: 120px !important;
    }
    
    @media (max-width: 768px) {
        .top-bar {
            display: none;
        }
        .nav-fixed {
            top: 0 !important;
        }
        .main-content {
            padding-top: 80px !important;
        }
    }




    
    
    @view-transition { navigation: auto; }





/* New Styles For Parallax */

/* استایل برای بخش‌های پارالاکس */
.parallax-vision,
.parallax-about {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.parallax-vision::before,
.parallax-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-vision > *,
.parallax-about > * {
    position: relative;
    z-index: 2;
}

/* انیمیشن‌ها */
.scroll-animate-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-fade.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-left.animate-in,
.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}


/* استایل برای عنوان چشم‌انداز */
.vision-title {
    font-size: 3rem; /* 56px */
    line-height: 1.1;
}

@media (min-width: 768px) {
    .vision-title {
        font-size: 3rem; /* 80px */
    }
}

@media (max-width: 640px) {
    .vision-title {
        font-size: 3rem; /* 40px */
    }
}






/* استایل برای کارت‌های محصول */
.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* انیمیشن‌های اسکرول */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-left.animate-in,
.scroll-animate-right.animate-in,
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .grid.md\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}





/* استایل برای بخش اخبار */
.news-thumbnail {
    transition: all 0.3s ease;
}

.news-thumbnail:hover {
    transform: scale(1.05);
}

/* ریسپانسیو برای اخبار */
@media (max-width: 768px) {
    .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .bg-white.rounded-2xl .flex {
        flex-direction: column;
    }
    
    .bg-white.rounded-2xl .w-32 {
        width: 100%;
        height: 200px;
        margin: 0;
    }
    
    .bg-white.rounded-2xl .w-32 .news-thumbnail {
        border-radius: 0;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
}

/* انیمیشن‌های اسکرول */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}



/* استایل برای محتوای خبر */
.prose {
    max-width: none !important;
}

.prose p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prose h2, .prose h3 {
    color: #1e40af;
    font-family: 'Yekan', Tahoma, sans-serif;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose ul {
    list-style-type: disc;
    list-style-position: outside;
    margin-right: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: #374151;
}