@import '../fonts/fonts.css';


*{
  font-family: IranSansX !important;
}
@import url('https://fonts.googleapis.com/css?family=Lato|Open+Sans:400,600,700');

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #17162C;
    position: relative;
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

button {
    cursor: pointer;
}

button:focus {
    outline: 0
}

a {
    color: #17162C;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-weight: 400;
    margin-top: 0
}

h1 {
    font-size: 70px;
    line-height: 80px
}

h2 {
    font-size: 36px;
    line-height: 46px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 18px;
    line-height: 28px
}

h6 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    font-family: 'Lato', sans-serif;
}

.d-table {
    width: 100%;
    height: 100%
}

.bg-gray {
    background-color: #f9f9f9
}

.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 10px;
    }
    50% {
        top: -10px;
    }
    100% {
        top: 10px;
    }
}

@keyframes animation-jump {
    0% {
        top: 10px;
    }
    50% {
        top: -10px;
    }
    100% {
        top: 10px;
    }
}


/*-------------------------------------------------------------------------------------
    preloader
---------------------------------------------------------------------------------------*/

.preloader {
    background: #504D9C;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    header area
---------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 18px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.navbar-nav .nav-item {
    padding: 0 8px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #17162C
}

.navbar-nav .nav-item .nav-link.active {
    color: #504D9C
}

#header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 22px 0
}

/*-------------------------------------------------------------------------------------
    home area
---------------------------------------------------------------------------------------*/

#home-area {
    position: relative;
    padding: 200px 0 170px;
    background: linear-gradient(135deg, #504D9C 15%, #372f80 50%, #28216a 85%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientAnimation {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.pattern-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dot.png);
    opacity: 0.1;
    animation: patternFade 8s infinite alternate;
}

@keyframes patternFade {
    0% {opacity: 0.05;}
    100% {opacity: 0.15;}
}

.caption h1 {
    font-weight: 700;
    margin: 0 0 25px;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.caption h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffffff, transparent);
    bottom: -12px;
    right: 0;
}

.caption p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.caption a {
    display: inline-block;
    background-color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    color: #504D9C;
    font-weight: 600;
    margin: 30px 0 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.caption a span {
    position: relative;
    z-index: 2;
    margin-left: 8px;
}

.caption a i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.caption a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(80, 77, 156, 0.15), rgba(80, 77, 156, 0.05));
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.caption a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #504D9C;
}

.caption a:hover:before {
    width: 100%;
}

.caption a:hover i {
    transform: translateX(5px);
}

.caption-img {
    position: relative;
    z-index: 2;
}

.caption-img:before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 5s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.caption-img:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.caption-img img {
    max-width: 100%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] a.dark-text:active {
    color: #000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}
header#header{
    background: #fff !important;
}
[data-theme="dark"] header#header {
    background: #1a1a1a !important;
}
.hero-badge:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {transform: translateX(-300%) rotate(45deg);}
    100% {transform: translateX(300%) rotate(45deg);}
}

.hero-badge i {
    color: gold;
    margin-right: 10px;
    font-size: 18px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.hero-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.floating-icon i {
    color: #fff;
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.floating-icon.icon-1 {
    top: 15%;
    left: 5%;
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 10%;
    animation: floatIcon 8s ease-in-out infinite 1s;
    width: 70px;
    height: 70px;
}

.floating-icon.icon-2 i {
    font-size: 28px;
    color: gold;
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 15%;
    animation: floatIcon 7s ease-in-out infinite 2s;
    width: 50px;
    height: 50px;
}

.floating-icon.icon-4 {
    top: 30%;
    right: -5%;
    animation: floatIcon 9s ease-in-out infinite 3s;
    width: 45px;
    height: 45px;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Home Area Specific Responsive Styles */
@media only screen and (max-width: 767px) {
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon.icon-2 {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 16px;
    }
    
    .floating-icon.icon-2 i {
        font-size: 20px;
    }
    
    .hero-badge {
        padding: 8px 16px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .hero-badge span {
        font-size: 12px;
    }
    
    .caption h1:after {
        width: 70px;
        height: 3px;
    }
    
    .caption a {
        padding: 12px 24px;
    }
}


/*-------------------------------------------------------------------------------------
    home slider
---------------------------------------------------------------------------------------*/

.slide-single .caption-img img {
    max-width: 300px;
    margin: 0 auto
}

.owl-item.active .slide-single h1 {
    -webkit-animation: 1s .2s fadeInUp both;
    animation: 1s .2s fadeInUp both;
}

.owl-item.active .slide-single h3 {
    -webkit-animation: 1s .3s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.owl-item.active .slide-single p {
    -webkit-animation: 1s .4s fadeInUp both;
    animation: 1s .4s fadeInUp both;
}

.owl-item.active .slide-single a {
    -webkit-animation: 1s .6s fadeInUp both;
    animation: 1s .6s fadeInUp both;
}

.owl-item.active .slide-single img {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

.home-carousel .owl-nav > div {
    position: absolute;
    left: 20px;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    line-height: 68px;
    border-radius: 50%;
    font-size: 30px;
    background-color: rgba(255, 77, 28, 0.5);
    color: #fff;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0
}

.home-carousel .owl-nav .owl-next {
    left: auto;
    right: 20px
}

.home-carousel .owl-nav > div:hover {
    background-color: rgba(255, 77, 28);
}

#home-area:hover .owl-nav > div {
    visibility: visible;
    opacity: 1;
}

.home-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 100%;
    text-align: center
}

.home-carousel .owl-dot {
    width: 30px;
    height: 8px;
    border-radius: 2px;
    border: 2px solid #504D9C;
    display: inline-block;
    margin: 0 4px
}

.home-carousel .owl-dot.active {
    background-color: #504D9C;
}

/*-------------------------------------------------------------------------------------
    home newsletter
---------------------------------------------------------------------------------------*/

.home-newsletter {
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    z-index: 9;
}

.home-newsletter input {
    background-color: #f5f5f5;
    border: 0;
    height: 60px;
    padding-left: 20px;
    font-size: 15px;
}

.home-newsletter button {
    background-color: #504D9C;
    width: 100%;
    border: 0;
    color: #fff;
    height: 60px;
    border-radius: 3px;
    font-weight: 600
}

.home-newsletter button:hover {
    background-color: #504D9C;
}

.home-newsletter h2 {
    font-weight: 700;
    font-size: 34px;
}

.home-newsletter form {
    margin-top: 34px;
}

/*-------------------------------------------------------------------------------------
    section heading
---------------------------------------------------------------------------------------*/

.section-heading {
    margin: 0 0 60px;
}

.section-heading h2 {
    font-weight: 800;
}

/*-------------------------------------------------------------------------------------
    feature area
---------------------------------------------------------------------------------------*/

#feature-area {
    padding: 105px 0 100px;
}

.feature-single h4 {
    font-weight: 700;
}

.feature-single .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background-color: rgba(80, 77, 156, 0.1);
    border-radius: 50%;
}

.feature-single i {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 50px;
    border-radius: 50%;
    margin: 10px 0 0;
    background-color: rgba(80, 77, 156, 0.1);
    color: #504D9C
}

/*-------------------------------------------------------------------------------------
    about area
---------------------------------------------------------------------------------------*/

#about-area {
    padding: 120px 0;
}

.about-info {
    padding: 40px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: #fff
}

.about-info h2 {
    font-weight: 700;
    margin-bottom: 16px;
}

.about-info ul {
    margin-top: 10px;
}

.about-info ul li {
    display: block;
    padding: 8px 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px
}

.about-info li i {
    color: #0cff84;
}

.about-img {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.about-img img {
    max-width: 350px;
}

/*-------------------------------------------------------------------------------------
    video area
---------------------------------------------------------------------------------------*/

#video-area {
    padding: 120px 0;
    background-image: url(../images/banner-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.video-cont {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.video-cont h2 {
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff
}

.video-cont p {
    color: #fff
}

.video-box {
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/circle-1.png)
}

.video-box a {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 80px;
    padding: 0 28px;
    background-color: #504D9C;
    color: #fff;
    position: relative
}

.video-box a:hover {
    background-color: #130f40;
    color: #fff;
}

.video-box a:after {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    height: 90px;
    width: 90px;
    border: 3px solid #504D9C;
    border-radius: 50%;
    -webkit-animation: icon-bubble 1s infinite forwards linear;
    animation: icon-bubble 1s infinite forwards linear;
}

.video-box a:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    height: 90px;
    width: 90px;
    border: 3px solid #504D9C;
    border-radius: 50%;
    -webkit-animation: icon-bubble 1s infinite forwards linear 0.5s;
    animation: icon-bubble 1s infinite forwards linear 0.5s;
}

@-webkit-keyframes icon-bubble {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.55;
    }

    75% {
        -webkit-transform: scale(1.32);
        transform: scale(1.32);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes icon-bubble {
    0% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        opacity: 1;
    }

    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0.55;
    }

    75% {
        -webkit-transform: scale(1.32);
        transform: scale(1.32);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    why choose area
---------------------------------------------------------------------------------------*/

#why-chose-area {
    padding: 110px 0 120px;
    position: relative
}

.circle-bg {
    position: absolute;
    left: -20%;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/circle-2.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.why-chose-cont {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.why-chose-single {
    padding: 10px 35px;
}

.why-chose-single h4 {
    font-weight: 700;
}

.why-chose-single i {
    display: inline-block;
    font-size: 50px;
    margin: 0 0 16px;
    color: #504D9C
}

.product-gallery.owl-carousel {
    background-color: #FFEDE8;
    padding: 20px 20px 100px;
}

.product-gallery.owl-carousel img {
    max-width: 300px;
    margin: 0 auto;
}

.product-gallery.owl-carousel .owl-nav {
    width: 100px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0
}

.product-gallery.owl-carousel .owl-nav > div {
    position: absolute;
    left: 0;
    bottom: -65px;
    right: 0;
    text-align: center;
    background-color: #130f40;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px
}

.product-gallery.owl-carousel .owl-nav > div:hover {
    background-color: #504D9C;
}

.product-gallery.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: 0
}

/*-------------------------------------------------------------------------------------
    product area
---------------------------------------------------------------------------------------*/

#product-area {
    padding: 110px 0 120px
}

.product-wrap {
    background-color: #f9f9f9;
    padding: 50px 20px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.product-single {
    border: 2px solid #e6f0fa;
    padding: 30px 0 40px;
    background-color: rgba(80, 77, 156, 0.1);
    height: 100%
}

.product-single img {
    max-width: 150px;
    margin: 0 auto 30px;
}

.product-single h3 {
    font-weight: 700;
    margin: 20px 0 0
}

.product-single sup {
    opacity: 0.5;
    margin-left: 5px
}

.product-single h4 {
    font-weight: 700;
}

.product-single li {
    font-size: 14px;
    padding: 4px 0;
}

.product-cont li i {
    color: #504D9C;
}

.product-single a {
    display: inline-block;
    padding: 10px 15px;
    color: #341f97;
    font-size: 14px;
    margin: 25px 0 0;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #504D9C
}

.product-single a:hover {
    background-color: #504D9C;
    border-color: #504D9C;
    color: #fff
}

.product-single a i {
    padding-right: 4px
}

.more-prod-btn a {
    display: inline-block;
    background-color: #504D9C;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    margin: 50px 0 0;
    font-weight: 600;
}

.more-prod-btn a:hover {
    background-color: #504D9C;
}

/*-------------------------------------------------------------------------------------
    newsletter area
---------------------------------------------------------------------------------------*/

#newsletter-area {
    padding: 110px 0 120px;
    background-image: url(../images/banner-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.newsletter-box {
    padding: 60px 40px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 30px;
}

.newsletter-form {
    position: relative
}

.newsletter-form input {
    width: 100%;
    float: left;
    color: #7e7e7e;
    border: 0;
    height: 65px;
    padding-left: 30px;
    border-radius: 30px;
    border: 3px solid #e0e3f7
}

.newsletter-form button {
    background-color: #504D9C;
    border: 0;
    border-radius: 4px;
    color: #fff;
    height: 52px;
    position: absolute;
    right: 6px;
    top: 6px;
    border-radius: 4px 30px 30px 4px;
    padding: 0 40px;
    font-weight: 600
}

.newsletter-form button:hover {
    background-color: #504D9C;
}

/*-------------------------------------------------------------------------------------
    faq area
---------------------------------------------------------------------------------------*/

#faq-area {
    padding: 110px 0;
}

.card-header {
    padding: 0;
    border: 0;
    background-color: #f9f9f9;
}

.card {
    margin-bottom: 10px;
    border: 1px solid #e6f0fa;
}

.card-header a {
    padding: 15px 20px;
    display: block;
    font-weight: 600;
    color: #000;
    position: relative
}

.card-body {
    color: #777;
    font-family: 'Lato', sans-serif;
    line-height: 26px;
}

.card-header a:hover {
    background-color: #504D9C;
    color: #fff;
    border-radius: 2px;
}

.card-header.active a:after {
    content: '\ef9a';
    color: #504D9C;
}

.card-header a:after {
    content: '\efc2';
    font-family: 'IcoFont';
    font-size: 14px;
    position: absolute;
    left: 15px;
    top: 16px;
    color: #504D9C
}

.card-header.active a:hover:after,
.card-header a:hover:after {
    color: #fff
}

/*-------------------------------------------------------------------------------------
    testimonial area
---------------------------------------------------------------------------------------*/

.testi-area {
    padding: 110px 0 160px
}

.testi-single {
    border-radius: 10px;
    padding: 20px 30px 30px;
    background-color: #fff;
    border: 1px solid #e6f0fa;
}

.testi-single img {
    max-width: 80px;
    border-radius: 50%;
    margin: 0 auto
}

.client-comment p i {
    color: #f9aa1f;
    font-size: 16px;
}

.testi-single .client-info {
    margin: 30px 0 0;
    overflow: hidden;
}

.client-details h4 {
    color: #504D9C;
    font-weight: 600;
    margin: 15px 0 0
}

.client-details {
    margin: 8px 0 0;
}

.client-comment span {
    color: #6d70a6;
    font-size: 40px;
    display: inline-block;
}

.testi-carousel.owl-carousel .owl-nav {
    width: 200px;
    margin: 40px auto 0;
    position: relative
}

.testi-carousel.owl-carousel .owl-nav > div {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 4px;
    margin-left: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid rgba(229, 240, 255, 0.5);
    background-color: #fff;
    color: #040da8;
}

.testi-carousel.owl-carousel .owl-nav .owl-next {
    left: 60px;
}

.testi-carousel.owl-carousel .owl-nav > div:hover {
    background-color: #092EED;
    color: #fff
}

/*-------------------------------------------------------------------------------------
    contact area
---------------------------------------------------------------------------------------*/

#contact-area {
    padding: 110px 0 105px; 
    background-position: right;
    background-repeat: no-repeat
}

.contact-form input {
    height: 55px;
    border: 0;
    padding-left: 20px;
    border-bottom: 1px solid #e6f0fa;
    border-radius: 0;
}

.contact-form textarea {
    border: 0;
    border-bottom: 1px solid #e6f0fa;
    padding: 20px 0 0 20px;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}

.contact-form button {
    background-color: #504D9C;
    border: 0;
    padding: 14px 30px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600
}

.contact-form button:hover {
    background-color: #504D9C;
}

.contact-img {
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.contact-img img {
    max-width: 350px;
}

.help-block.with-errors li {
    color: #ff0000;
    margin: 4px 0 0;
}

.messages {
    margin: 15px 0 0
}

.messages button {
    color: #000;
    padding: 0;
    background-color: transparent
}

.messages button:hover {
    background-color: transparent
}

/*-------------------------------------------------------------------------------------
    footer area
---------------------------------------------------------------------------------------*/

.footer-social li {
    display: inline-block;
}

.footer-social li a {
    display: block;
    border: 1px solid #504D9C;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    color: #504D9C;
    font-size: 18px;
    margin-right: 4px;
}

#footer {
    padding: 50px 0 30px;
}

.footer-social li span {
    padding-right: 10px;
    font-weight: 600;
}

.copyright-text p a {
    color: #504D9C;
}

.copyright-text a:hover {
    color: #504D9C;
}

/*-------------------------------------------------------------------------------------
    demo area
---------------------------------------------------------------------------------------*/

.demo-header {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.demo-header h2 {
    font-weight: 700;
    color: #fff;
    font-size: 40px;
    line-height: 50px
}

.demo-body {
    padding: 100px 0 40px;
}

.demo-img {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2)
}

.demo-sing-cont h5 {
    font-weight: 700;
    margin: 24px 0 0;
    color: #504D9C
}

.demo-sing-cont a {
    display: inline-block;
    padding: 8px 26px;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
}

.demo-sing-cont a:hover {
    background-size: 200% auto
}

.demo-single {
    margin: 0 0 60px;
}

.demo-header-cont a {
    display: inline-block;
    padding: 10px 33px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    margin: 30px 10px 0 0;
    background-color: #504D9C
}

.demo-header-cont a:hover {
    background-color: #504D9C
}

/* استایل‌های بخش گالری */
.gallery-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.gallery-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.gallery-section .section-heading p {
    color: #666;
    font-size: 16px;
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-overlay a:hover {
    background: #007bff;
    color: #fff;
}

/* استایل‌های ریسپانسیو */
@media (max-width: 991px) {
    .gallery-section {
        padding: 70px 0;
    }
    
    .gallery-section .section-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section .section-heading h2 {
        font-size: 26px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .gallery-section .section-heading h2 {
        font-size: 22px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/*-------------------------------------------------------------------------------------
    درباره ما
---------------------------------------------------------------------------------------*/

.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-content {
    padding-right: 30px;
}

.about-content .section-title {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-content .section-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #504D9C;
    font-size: 20px;
    margin-left: 10px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/*-------------------------------------------------------------------------------------
    تیم ما
---------------------------------------------------------------------------------------*/

.team-section {
    padding: 100px 0;
}

.team-section .section-header {
    margin-bottom: 50px;
}

.team-section .section-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-section .section-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .about-section,
    .team-section {
        padding: 60px 0;
    }
    
    .member-image img {
        height: 250px;
    }
}

/*-------------------------------------------------------------------------------------
    صفحه درباره ما
---------------------------------------------------------------------------------------*/

.page-header {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
}

.page-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #504D9C;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.about-main-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .subtitle {
    color: #504D9C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content .section-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: #504D9C;
    font-size: 20px;
    margin-left: 10px;
}

.feature-item span {
    color: #2c3e50;
    font-size: 16px;
}

.about-stats {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: #504D9C;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #504D9C;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge span {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 5px 0 0;
}

.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-section .section-header {
    margin-bottom: 50px;
}

.team-section .section-description {
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(80, 77, 156, 0.9);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: translateY(-3px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info p {
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .page-header,
    .about-main-section,
    .team-section {
        padding: 60px 0;
    }
    
    .member-image img {
        height: 250px;
    }
    
    .stat-item h3 {
        font-size: 30px;
    }
}

/*-------------------------------------------------------------------------------------
    بخش محصولات
---------------------------------------------------------------------------------------*/

.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(80, 77, 156, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 30px;
    color: #504D9C;
}

.product-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin: 0;
}

/*-------------------------------------------------------------------------------------
    بخش مزایا
---------------------------------------------------------------------------------------*/

.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 40px;
    color: #504D9C;
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .product-card,
    .feature-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .products-section,
    .features-section {
        padding: 60px 0;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .product-icon i {
        font-size: 24px;
    }
}

/*-------------------------------------------------------------------------------------
    بخش اطلاعات تماس و آدرس
---------------------------------------------------------------------------------------*/

.contact-info-section {
    padding: 60px 0;
    background: #fff;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* دارک مود */
[data-theme="dark"] .contact-info-section {
    background: #121212;
}

[data-theme="dark"] .info-card {
    background: #1e1e1e;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .info-content h4 {
    color: #fff;
}

[data-theme="dark"] .info-content p {
    color: #ccc;
}

[data-theme="dark"] .info-icon {
    background: #504D9C;
}

[data-theme="dark"] .info-icon i {
    color: #fff;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(80, 77, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.info-icon i {
    font-size: 24px;
    color: #504D9C;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.info-content p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.6;
}

.info-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .info-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
}
/* Media queries برای ریسپانسیو بودن بهتر home-area */
@media (max-width: 991px) {
    #home-area {
        padding-top: 100px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    
    #header {
        padding: 15px 0;
    }
    
    #home-area {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 60px;
    }
    
    #header {
        padding: 12px 0;
    }
    
    #home-area {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

/* بهبود نمایش در دستگاه‌های با ارتفاع کم */
@media (max-height: 600px) {
    #home-area {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}