/* Main code */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}




/* Header Style Code */
header .bottom-menu .logo img {
    width: auto;
    height: 60px;
    margin-top: 16px;
}
header ul {
    padding-left: 0rem;
}







/* Slider style code */
.omran-home-slider a {
    color: #fff;
    transition: 0.3s;
}
.omran-home-slider a:hover {
    color: #f0a85b;
}








/* استایل‌های اختصاصی برای بخش ویدئو و متن عمران */
.omran-home-video {
    width: 100%;
    padding: 8rem 0;
    background-color: #fff;
}

.omran-home-video-container {
    display: flex;
    flex-direction: row;
    max-width: 1310px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.omran-home-video-text {
    flex: 0 0 55%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.omran-home-video .video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px;
    cursor: pointer;
}
.omran-home-video .video-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
 }
 .omran-home-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  

.omran-home-video video {
    width: 100%;
    display: none; /* اول ویدئو مخفی باشه */
}

.omran-home-video-media {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.omran-home-video-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3748;
    position: relative;
    padding-bottom: 15px;
}

.omran-home-video-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #005b96;
    border-radius: 2px;
}

.omran-home-video-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.omran-home-video-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(45deg, #1a202c, #2d3748);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.omran-home-video-placeholder::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.omran-home-video-placeholder::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
    z-index: 2;
}

.omran-home-video-placeholder span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
}

.omran-home-video .header-button {
    flex-shrink: 0;
}

.omran-home-video .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3f4191 0%, #313280 100%);
    color: white;
    padding: 6px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.omran-home-video .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.omran-home-video .cta-button:hover::before {
    opacity: 1;
}

.omran-home-video .cta-button span {
    position: relative;
    z-index: 2;
}


/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 768px) {
    .omran-home-video-container {
        flex-direction: column;
    }
    
    .omran-home-video-text, 
    .omran-home-video-media {
        flex: 0 0 100%;
    }
    
    .omran-home-video-media {
        order: 1;
        padding: 30px;
    }
    
    .omran-home-video-text {
        order: 2;
    }
    
    .omran-home-video-text {
        padding: 30px;
    }
    
    .omran-home-video-placeholder {
        height: 250px;
    }
}










/* استایل‌های اختصاصی برای بخش خدمات عمران */
.omran-home-services-header {
    width: 100%;
    padding: 40px 0;
    margin-bottom: 40px;
}

.omran-home-services-header .header-content {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.omran-home-services-header .header-text {
    flex: 1;
    padding-left: 30px;
}

.omran-home-services-header .header-text h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.omran-home-services-header .header-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #005b96;
    border-radius: 2px;
}

.omran-home-services-header .header-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
}

.omran-home-services-header .header-button {
    flex-shrink: 0;
}

.omran-home-services-header .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3f4191 0%, #313280 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.omran-home-services-header .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.omran-home-services-header .cta-button:hover::before {
    opacity: 1;
}

.omran-home-services-header .cta-button span {
    position: relative;
    z-index: 2;
}

/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 768px) {
    .omran-home-services-header .header-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .omran-home-services-header .header-text {
        padding-left: 0;
    }
    
    .omran-home-services-header .header-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .omran-home-services-header .header-text p {
        max-width: 100%;
    }
}
.omran-home-services {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.omran-home-services .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.omran-home-services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2px;
}

.omran-home-services .column {
    flex: 1;
    margin-bottom: 20px;
}

.omran-home-services .service-card {
    background-color: white;
    border-radius: 26px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.omran-home-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.omran-home-services .service-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.omran-home-services .service-card:hover .service-image {
    transform: scale(1.03);
}

.omran-home-services .service-title {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.omran-home-services .service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 3px;
    background: #4299e1;
    border-radius: 2px;
}

.omran-home-services .service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    text-align: justify;
    text-align-last: center;
}

/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 992px) {
    .omran-home-services .column {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 576px) {
    .omran-home-services .column {
        flex: 0 0 100%;
    }
    
    .omran-home-services .service-card {
        padding: 20px;
    }
    
    .omran-home-services .service-image {
        height: 160px;
    }
}











/* استایل‌های اختصاصی برای بخش پروژه‌های عمران */
.omran-home-projects {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #3f4191 0%, #1e3250 100%);
    color: white;
}

.omran-home-projects .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.omran-home-projects .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2px;
}

.omran-home-projects .column {
    flex: 1;
    margin-bottom: 20px;
}

.omran-home-projects .project-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a7e 100%);
    border-radius: 26px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.omran-home-projects .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #214d7a 0%, #2f5a9c 100%);
}

.omran-home-projects .project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.omran-home-projects .project-card:hover .project-image {
    transform: scale(1.03);
}

.omran-home-projects .project-title {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.omran-home-projects .project-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 3px;
    background: #4299e1;
    border-radius: 2px;
}

.omran-home-projects .project-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    text-align-last: center;
}

/* استایل‌های هدر بخش پروژه‌ها */
.omran-home-projects-header {
    width: 100%;
    padding: 40px 0 60px 0;
    margin-bottom: 20px;
}

.omran-home-projects-header .header-content {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.omran-home-projects-header .header-text {
    flex: 1;
    padding-left: 30px;
}

.omran-home-projects-header .header-text h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.omran-home-projects-header .header-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #4299e1;
    border-radius: 2px;
}

.omran-home-projects-header .header-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.omran-home-projects-header .header-button {
    flex-shrink: 0;
}

.omran-home-projects-header .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #005b96 0%, #3182ce 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(31, 39, 46, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.omran-home-projects-header .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 40, 56, 0.4);
}

.omran-home-projects-header .cta-button:hover::before {
    opacity: 1;
}

.omran-home-projects-header .cta-button span {
    position: relative;
    z-index: 2;
}

/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 992px) {
    .omran-home-projects .column {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .omran-home-projects .column {
        flex: 0 0 100%;
    }
    
    .omran-home-projects .project-card {
        padding: 20px;
    }
    
    .omran-home-projects .project-image {
        height: 160px;
    }
    
    .omran-home-projects-header .header-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .omran-home-projects-header .header-text {
        padding-left: 0;
    }
    
    .omran-home-projects-header .header-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .omran-home-projects-header .header-text p {
        max-width: 100%;
    }
}













/* استایل‌های اختصاصی برای بخش چشم‌انداز عمران */
.omran-home-cheshmandaz {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.omran-home-cheshmandaz .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.omran-home-cheshmandaz .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: space-between;
}

.omran-home-cheshmandaz .column {
    flex: 0 0 33.3334%;
    margin-bottom: 20px;
}

.omran-home-cheshmandaz .card {
    background-color: white;
    border: none;
    border-radius: 20px;
    padding: 30px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omran-home-cheshmandaz .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(22, 25, 56, 0.3);
}

.omran-home-cheshmandaz .card-img {
    background-color: white;
    border: none;
    border-radius: 20px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omran-home-cheshmandaz .card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(22, 25, 56, 0.3);
}

.omran-home-cheshmandaz .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.omran-home-cheshmandaz .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.omran-home-cheshmandaz .card-title {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.omran-home-cheshmandaz .card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    text-align: justify;
    text-align-last: center;
}

.omran-home-cheshmandaz .omran-home-cheshmandaz-counter {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    display: inline-flex;
    align-items: center;
}

.omran-home-cheshmandaz .counter-number {
    color: #ff5722;
    margin-left: 5px;
}

.omran-home-cheshmandaz .counter-fixed {
    color: #555;
    font-size: 1rem;
}



/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 992px) {
    .omran-home-cheshmandaz .column {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .omran-home-cheshmandaz .column {
        flex: 0 0 100%;
    }
    
    .omran-home-cheshmandaz .card {
        height: auto;
        min-height: 300px;
    }
}







/* استایل‌های اختصاصی برای بخش گواهینامه‌های عمران */
.omran-home-certificates {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.omran-home-certificates .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.omran-home-certificates .certificates-header {
    text-align: center;
    margin-bottom: 60px;
}

.omran-home-certificates .certificates-header h2 {
    font-size: 36px;
    color: #1a365d;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.omran-home-certificates .certificates-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: #4299e1;
    border-radius: 2px;
}

.omran-home-certificates .certificates-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.omran-home-certificates .certificate-column {
    flex: 1;
}

.omran-home-certificates .certificate-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.omran-home-certificates .certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.omran-home-certificates .certificate-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.omran-home-certificates .certificate-item:hover .certificate-image {
    transform: scale(1.05);
}

.omran-home-certificates .certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
}

.omran-home-certificates .certificate-item:hover .certificate-overlay {
    height: 35%;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.6) 50%, transparent 100%);
}

.omran-home-certificates .certificate-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.omran-home-certificates .certificates-button-row {
    text-align: center;
}

.omran-home-certificates .certificates-button {
    display: inline-block;
    background: linear-gradient(135deg, #3f4191 0%, #313280 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.omran-home-certificates .certificates-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.omran-home-certificates .certificates-button:hover::before {
    opacity: 1;
}

.omran-home-certificates .certificates-button span {
    position: relative;
    z-index: 2;
}

/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 992px) {
    .omran-home-certificates .certificate-column {
        flex: 0 0 calc(50% - 30px);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .omran-home-certificates .certificate-column {
        flex: 0 0 100%;
        max-width: 400px;
    }
    
    .omran-home-certificates .certificates-header h2 {
        font-size: 28px;
    }
    
    .omran-home-certificates .certificate-title {
        font-size: 18px;
    }
    
    .omran-home-certificates .certificates-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}










/* استایل‌های اختصاصی برای بخش آخرین مطالب وبلاگ عمران */
.omran-home-blog-last-posts {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.omran-home-blog-last-posts .container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 20px;
}

.omran-home-blog-last-posts .blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.omran-home-blog-last-posts .blog-header h2 {
    font-size: 36px;
    color: #1a365d;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.omran-home-blog-last-posts .blog-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: #4299e1;
    border-radius: 2px;
}

.omran-home-blog-last-posts .blog-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.omran-home-blog-last-posts .blog-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.omran-home-blog-last-posts .post-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.omran-home-blog-last-posts .post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.omran-home-blog-last-posts .post-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: block;
}

.omran-home-blog-last-posts .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.omran-home-blog-last-posts .post-item:hover .post-image img {
    transform: scale(1.05);
}

.omran-home-blog-last-posts .post-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.omran-home-blog-last-posts .post-title {
    margin-bottom: 8px;
}

.omran-home-blog-last-posts .post-title a {
    font-size: 16px;
    color: #1a365d;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    text-align: justify;
}

.omran-home-blog-last-posts .post-title a:hover {
    color: #4299e1;
}

.omran-home-blog-last-posts .post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: #718096;
}

.omran-home-blog-last-posts .post-date {
    color: #718096;
}

.omran-home-blog-last-posts .post-category {
    color: #4299e1;
    font-weight: 500;
}

.omran-home-blog-last-posts .post-excerpt {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    text-align: justify;
}

/* حالت واکنش‌گرا برای صفحه‌های کوچک */
@media (max-width: 1310px) {
    .omran-home-blog-last-posts .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .omran-home-blog-last-posts .blog-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .omran-home-blog-last-posts .blog-header h2 {
        font-size: 28px;
    }
    
    .omran-home-blog-last-posts .blog-header p {
        font-size: 16px;
    }
    
    .omran-home-blog-last-posts .post-title a {
        font-size: 16px;
    }
    
    .omran-home-blog-last-posts .post-meta {
        flex-direction: row;
    }
}












footer .top-footer .sub-footer-menu span {
    color: #f0a921;
    font-size: 14px;
    font-weight: 700;
}

footer .top-footer .sub-footer-menu ul {
    margin-top: 12px;
}

footer .newsletter-box .footer-khabarname-title {
    color: #f0a921 !important;
    font-size: 14px;
    font-weight: 700;
}

footer .newsletter-box p {
    margin-bottom: 10px !important;
}
footer .footer-menu a {
    color: #cce0ee;
    transition: 0.3s;
}
footer .footer-menu a:hover {
    color: #f0a85b;
}
footer .copy-right {
    margin-top: 16px;
}






#Product .circle-product:after {
    top: 100px !important;
}

@media (max-width: 660px) {
    #Product .circle-product {
        display: none;
    }
}

    .circle-product {
        padding-top: 60px !important;
    }


    .circle-product .product-item:nth-child(2) .product-des {
        padding-right: 250px !important;
    }

    .circle-product h2 {
        font-size: 30px !important;
    }

    .circle-item {
        font-weight: bold;
        color: #fff;
        font-size: 30px;
    }

    .circle-item-content {
        margin-top: 10%;
    }

    .circle-item-content>div>ul {
        display: block;
    }

    .circle-item-content>div>ul>li {
        font-size: 20px;
        margin-bottom: 25px;
    }

    swiper-slide img {
        width: 100%;
    }

    .clicked-image {
        max-width: 100% !important;
        width: 513px;
        height: auto;
        opacity: 0;
        border-radius: 28px;
        transform: scale(0.8) rotate(10deg);
        transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    }

    .clicked-image.showc {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    .image-list li {
        z-index: 99;
    }

    .image-list li:hover {
        color: #f79b4d;
    }

    .image-wrapper {
        position: relative;
        display: inline-block;
        overflow: hidden;
        border-radius: 28px;
    }

    .image-wrapper img {
        display: block;
        transition: transform 0.5s ease-in-out;
    }

    .image-wrapper:hover img {
        transform: scale(1.02);
    }

    .circle-overlay {
        position: absolute;
        width: 50px;
        height: 25px;
        background: #c50000;
        border-radius: 40px 40px 0 0;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        transition: bottom 0.4s ease-in-out, height 0.4s ease-in-out, border-radius 0.4s ease-in-out, opacity 0.4s ease-in-out;
        opacity: 1;
    }

    .image-wrapper:hover .circle-overlay {
        bottom: 50%;
        transform: translate(-50%, 50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        opacity: 1;
    }

    .plus-icon {
        font-size: 24px;
        color: #fff;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
    }

    .image-wrapper:hover .plus-icon {
        opacity: 1;
        position: absolute;
        top: 24%;
        left: 36%;
    }

    .image-description {
        font-size: 15px !important;
    }

    .owl-carousel .image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 10px;
    }

    .owl-carousel .image-wrapper img {
        width: 700px;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }

    .about .owl-stage-outer {
        height: 280px !important;
    }

    .owl-carousel {
        display: flex !important;
    }

    .carosel-c {
        position: absolute;
        bottom: 10rem;
    }

    .carosel-c .owl-controls {
        bottom: 51px !important;
        pointer-events: none;
    }

    .carosel-c .owl-nav {
        pointer-events: auto;
    }

    .carosel-c .owl-prev {
        position: absolute !important;
        left: 26px !important;
        float: initial !important;
        bottom: 31px;
    }

    .carosel-c .owl-next {
        position: absolute !important;
        right: 26px !important;
        float: initial !important;
        bottom: 31px;
    }

    .carosel-c .owl-nav>div {
        width: 75px !important;
        height: 75px !important;
    }

    .carosel-c .owl-nav>div span {
        width: 18px !important;
        height: 48px !important;
    }

    .carosel-c .owl-controls .slider-left-btn {
        background-position: -17px -572px !important;
    }

    .carosel-c .owl-controls .slider-right-btn {
        background-position: -68px -572px !important;
    }







