/* --- General Styles --- */
body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Vazirmatn', sans-serif;
    color: #4a4a4a;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Header & Navigation */
.main-header {
    position: fixed; /* تغییر به fixed برای باقی ماندن در بالای صفحه */
    top: 0;
    width: 100%;
    padding: 15px 50px;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* پس زمینه نیمه شفاف برای شروع */
    background-color: rgba(0, 0, 0, 0.2);
    /* خط جداکننده زیر هدر */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.4s ease;
}

/* استایل هدر بعد از اسکرول */
.main-header.scrolled {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header.scrolled .main-nav ul li a,
.main-header.scrolled .dropdown::after {
    color: #333333; /* تغییر رنگ متن لینک ها در حالت اسکرول */
}

.main-header.scrolled .main-nav ul li a:hover {
    color: #007BFF; /* تغییر رنگ هاور لینک ها در حالت اسکرول */
}


.logo img {
    height: 80px;
    vertical-align: middle;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: #f0f0f0; /* رنگ جدید و کمی ملایم تر */
    text-decoration: none;
    font-size: 22px;
    padding: 5px 0;
    transition: color 0.3s;
}

/* تغییر رنگ لینک ها با بردن موس روی آن */
.main-nav ul li a:hover {
    color: #4139c9;
}

.dropdown::after {
    content: ' ▾';
    font-size: 12px;
    color: #f0f0f0;
}

.header-left-section {
    display: flex;
    align-items: center;
}

.iapf-button {
    background-color: #2596be;
    color: #111;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-left: 100px;
}

.iapf-button:hover {
    background-color: #6653d2;
}

/* دکمه های منوی موبایل (در ابتدا مخفی) */
.menu-toggle, .close-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.main-header.scrolled .menu-toggle {
    color: #333; /* تغییر رنگ آیکون همبرگری در حالت اسکرول */
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    /* تغییر رنگ عنوان */
    color: #EAEAEA;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {

    .main-header.scrolled .main-nav ul li a,
    .main-header.scrolled .dropdown::after {
        color: #ffffff;
    }

    .main-header .main-nav > ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background-color: #222;
        display: flex; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 60px;
        transition: right 0.4s ease-in-out;
        z-index: 2000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav.active ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        color: #ffffff;
    }

    .main-nav.active ul li {
        margin: 15px 25px;
        width: 100%;
    }

    
    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 28px;
    }

    .iapf-button {
        margin-left: 20%;           /* حذف فاصله‌ی چپ */
        margin-right: 0;          /* حذف فاصله‌ی راست ثابت */
        display: inline-block;    /* اجازه‌ی کنترل چینش */
        align-self: center;       /* وسط‌چین در flex parent */
    }
}


/* --------------------------------------- */

/* --- Main Container --- */
.card-container {
    display: flex;
    direction: rtl;
    align-items: flex-start; 
    gap: 40px;
    width: 95%; 
    max-width: 1600px;
    margin: 50px auto; 
    padding: 40px; /* این فاصله داخلی باعث می‌شود محتوا از لبه‌ها فاصله بگیرد */
    background-color: #FFFFFF; /* رنگ پس‌زمینه کادر، دقیقاً مانند صفحه */
    box-sizing: border-box;

    /* * FIX: دو خط زیر حذف یا کامنت شدند تا کادر کاملاً محو شود 
     */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06); */
}

/* --- Image Styling --- */
.card-container > img {
    flex-shrink: 0; /* از کوچک شدن عکس در فضاهای تنگ جلوگیری می‌کند */
    width: 50%; /* یا هر درصد دیگری که مناسب طرح شماست */
    max-width: 80%; /* مهم: برای حفظ ریسپانسیو بودن */
    height: auto;
    object-fit: contain;
}

/* --- Text Content Section --- */
.content-section {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.content-section p {
    font-size: 1rem; /* 16px */
    line-height: 2.1;
    text-align: justify;
    margin-bottom: 20px;
}

/* --- Title Styles --- */
.title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.title {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: #333;
    margin: 0;
}

.title-dots::before {
    content: '';
    display: grid;
    grid-template-columns: repeat(2, 6px);
    grid-template-rows: repeat(2, 6px);
    gap: 4px;
    background-color: #2596be; 
    border-radius: 2px;
}

/* --- Button Section --- */
.buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 45px;
    border: none;
    border-radius: 5px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #2596be; 
    color: white;
}

/* --- RESPONSIVE STYLES for mobile --- */
@media (max-width: 900px) {
       .card-container {
    flex-direction: column;     /* چیدمان ستونی */
    align-items: stretch;       /* تصویر و متن تمام عرض */
    gap: 20px;                  /* فاصله مناسب بینشان */
  }

  .card-container > img {
    width: 100%;                /* تصویر تمام عرض */
    max-width: 100%;            /* حذف محدودیت 70% قبلی */
    height: auto;               /* حفظ نسبت */
    object-fit: cover;          /* در صورت نیاز برای پر کردن قاب */
    margin: 0;                  /* حذف فاصله‌های قبلی */
    display: block;
  }

  .content-section {
    width: 100%;
    text-align: start;          /* اگر متن راست‌چین می‌خواهی: right */
  }
}

/* --- Stats Section Styling --- */

/* This sets the background for the entire section, you can change the color */
.stats-section {
    padding: 60px 0;
    background-color: #fff; /* or #f8f8f8 for a light gray background */
    font-family: 'Vazirmatn', sans-serif;
}

.stats-container {
    display: flex;
    justify-content: space-evenly; /* Distributes items evenly */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto; /* Centers the container */
    padding: 0 20px;
    direction: rtl; /* Ensures correct order */
}

.stat-item {
    text-align: center;
    padding: 0 20px; /* Adds space inside each item */
    position: relative; /* Needed for the separator line */
}

/* Adds the vertical separator line */
.stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px; /* Height of the separator */
    background-color: #e0e0e0; /* Color of the separator */
}

.stat-number {
    display: block;
    font-size: 3rem; /* 48px */
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 1rem; /* 16px */
    color: #777;
    margin: 0;
}


/* --- Responsive Styles for Mobile --- */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; /* Stacks items vertically */
        gap: 40px; /* Adds space between stacked items */
    }

    /* Hides the vertical separator line on mobile */
    .stat-item:not(:first-child)::before {
        display: none;
    }
}

/* --- Team Section Styling --- */
.team-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    text-align: center;
}

/* --- Section Header Styling (Title) --- */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 15px;
}

.title-decorator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.title-decorator span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #d1b382;
    border-radius: 50%;
}

.title-decorator span.center-dot {
    width: 12px;
    height: 12px;
    background-color: #b9a989;
}

/* --- Team Container --- */
.team-container {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 80px; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Team Member Card --- */
.team-member {
    position: relative;
    width: 250px;
    height: 350px; /* ارتفاع ثابت برای زیبایی بیشتر */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out;
}

.team-member:hover img {
    filter: grayscale(0%); /* عکس در هاور رنگی می‌شود */
}

/* --- Member Info Overlay --- */
.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto; /* ارتفاع در حالت عادی خودکار است */
    background-color: rgba(59, 176, 218, 0.818);;
    padding: 15px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.member-name {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.member-role {
    margin: 5px 0 0;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.team-member:hover .member-info {
    height: 100%; /* لایه کل کارت را می‌پوشاند */
    background-color: rgb(37, 150, 190,0.75);/* صفحه نارنجی شفاف می‌شود */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-member:hover .member-role {
    /* FIX: در حالت هاور، عنوان شغلی ظاهر می‌شود */
    opacity: 1;
    max-height: 50px; /* ارتفاع کافی برای نمایش متن */
}

/* --- Custom Scrollbar for Team Container --- */
.team-container::-webkit-scrollbar {
  height: 8px;
}

.team-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.team-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.team-container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* --- Testimonial Section Styling --- */
.testimonial-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Vazirmatn', sans-serif;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    direction: rtl;
    gap: 40px;
}


/* --- Content (Text) Column --- */
.testimonial-content {
    flex-basis: 55%;
}

.testimonial-image-wrapper {
    flex-basis: 100%;
}

.testimonial-title {
    font-size: 2rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 900;
}

.testimonial-title .highlight {
    color: #2596be;
    font-size: 2.2rem;
    font-weight: 1000;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    line-height: 2;
    text-align: justify;
}

/* --- Image Column --- */
.testimonial-image-wrapper {
    flex-basis: 45%;
    text-align: center;
}

.main-image {
    max-width: 100%;
    height: auto;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        text-align: center;
    }

    .testimonial-image-wrapper {
        margin-top: 40px;
    }
}

/* --- News Section Styling --- */
.news-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Vazirmatn', sans-serif;
}

/* Using the same header style from previous sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- News Grid Layout --- */
.news-grid {
    display: grid;
    /* FIX: The middle column (2fr) is now twice as wide as the side columns (1fr) */
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    direction: rtl;
}

/* --- News Card Styling --- */
.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* محتوا را به پایین کارت می‌چسباند */
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ایجاد یک لایه تیره روی عکس برای خوانایی متن */
.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-content {
    position: relative;
    z-index: 2; /* محتوا را روی لایه تیره قرار می‌دهد */
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.card-meta {
    font-size: 0.85rem;
    opacity: 0.9;
}


/* --- Grid Item Placement --- */
/* چیدمان دقیق هر کارت در گرید */
.card-top-left      { grid-column: 3 / 4; grid-row: 1 / 2; }
.card-bottom-left   { grid-column: 3 / 4; grid-row: 2 / 3; }

.card-large-center  { grid-column: 2 / 3; grid-row: 1 / 3; }

.card-top-right     { grid-column: 1 / 2; grid-row: 1 / 2; }
.card-bottom-right  { grid-column: 1 / 2; grid-row: 2 / 3; }


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr 1fr; /* دو ستونه در تبلت */
        grid-template-rows: auto; /* ارتفاع خودکار */
    }

    /* بازنشانی چیدمان برای حالت دو ستونه */
    .card-top-left,
    .card-bottom-left,
    .card-large-center,
    .card-top-right,
    .card-bottom-right {
        grid-column: auto;
        grid-row: auto;
        height: 250px; /* یک ارتفاع ثابت برای زیبایی */
    }
    
    .card-large-center {
        grid-column: 1 / -1; /* کارت بزرگ تمام عرض را می‌گیرد */
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr; /* تک ستونه در موبایل */
    }
}

/* ========== استایل بخش موقعیت مکانی ========== */
.location-section {
    padding: 60px 0;
    background-color: #ffffff; /* یک پس زمینه خاکستری روشن */
    text-align: center;
    direction: rtl;
}

.location-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
}

/* این بخش نقشه را ریسپانسیو می‌کند */
.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* نسبت ابعاد 16:9 برای نقشه */
    border-radius: 10px; /* گوشه‌های گرد برای زیبایی */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background-color: #f7f7f7;
    color: #333;
    padding: 60px 0;
    font-size: 15px;
    line-height: 1.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr; /* تقسیم‌بندی ستون‌ها: ستون اول، دوم (پهن‌تر)، سوم */
    gap: 40px; /* فاصله بین ستون‌ها */
    align-items: start; /* تراز کردن محتوای ستون‌ها به بالا */
}

.footer-col h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #000;
}

/* --- ستون دسترسی سریع --- */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000;
}

/* --- ستون درباره ما و آیکون‌های اجتماعی --- */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #d19e54;
    transform: translateY(-3px);
}

/* --- ستون و جعبه تماس با ما --- */
.contact-box {
    background-color: #6bc1e0; /* رنگ خردلی */
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-sizing: border-box; /* برای محاسبه صحیح padding */
}

.contact-box h3 {
    color: #fff;
}

.contact-box p {
    margin: 15px 0;
}

.contact-info {
    font-weight: bold;
    letter-spacing: 1px;
}

/* --- طراحی واکنش‌گرا (ریسپانسیو) --- */

/* برای تبلت و صفحات کوچک‌تر */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1.5fr; /* دو ستونه شدن */
        gap: 30px;
    }
    /* ستون تماس در ردیف جدید قرار می‌گیرد */
    .footer-col:last-child {
        grid-column: 1 / -1; /* تمام عرض را اشغال می‌کند */
    }
}

/* برای موبایل */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* تک ستونه شدن */
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        display: inline-block;
        text-align: right;
    }
    
    .social-icons {
        justify-content: center; /* آیکون‌ها در مرکز قرار می‌گیرند */
    }
    .section-subtitle {
                font-size: 1.2rem;
            }
}

/* --------------------------------------------------page2------------------------------------------------------------------- */

        .banner {
            margin-top: 120px;
            /* آدرس عکس پس‌زمینه */
            background-image: url('static/back.jpg');
            
            height: 350px;
            background-size: cover;
            background-position: center;
            position: relative; /* لازم برای لایه overlay */

            /* استفاده از Flexbox برای وسط‌چین کردن محتوا */
            display: flex;
            justify-content: center;
            align-items: center !important;
            text-align: center;
        }

        /* لایه تیره برای خوانایی بهتر متن */
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* مشکی با 60% شفافیت */
            z-index: 1; /* این لایه در زیر متن قرار می‌گیرد */
        }

        /* محتوای متنی */
        .banner-content {
            position: relative; /* لازم برای اینکه z-index کار کند */
            z-index: 2; /* این لایه روی لایه تیره قرار می‌گیرد */
            color: white;
        }

        .banner-content h1 {
            font-size: 48px;
            color: #ffffff;  /* رنگ طلایی برای تیتر */
            margin: 0 0 10px 0;
            font-weight: 700;
        }

        .banner-content p {
            font-size: 22px;
            margin: 0;
            font-weight: 400;
        }

        .section-subtitle {
            font-size: 1.5rem; /* Larger font size */
            font-weight: 300;  /* Lighter font weight for elegance */
            color: #888;      /* A subtle gray color */
            margin-bottom: 15px;
            text-align: right;
        }