@charset "utf-8";
/*
Theme Name: aliaghaietheme
Author: agh
Version: 1
*/
/* === Root Variables === */
:root {
    --color1: #7BB23F; /* Primary green color */
    --color2: #F2BA41; /* Secondary orange color */
    --color3: #646566; /* Gray text color */
    --color4: #1F3F2E; /* Dark green for titles */
}

/* === Font Definitions === */
@font-face {
    font-family: PeydaWeb;
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/PeydaWebFaNum-Regular.woff') format('woff'),
         url('assets/fonts/PeydaWebFaNum-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: PeydaWebextrabold;
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/PeydaWebFaNum-ExtraBold.woff') format('woff'),
         url('assets/fonts/PeydaWebFaNum-ExtraBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: PeydaWebbold;
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/PeydaWebFaNum-Bold.woff') format('woff'),
         url('assets/fonts/PeydaWebFaNum-Bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: PeydaWebsemibold;
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/PeydaWebFaNum-SemiBold.woff') format('woff'),
         url('assets/fonts/PeydaWebFaNum-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: "aghicon";
    src: url("assets/fonts/agh_vakil.ttf") format("truetype"),
         url("assets/fonts/agh_vakil.woff") format("woff"),
         url("assets/fonts/agh_vakil.woff2") format("woff2"),
         url("assets/fonts/agh_vakil.eot") format("embedded-opentype"),
         url("assets/fonts/agh_vakil.svg") format("svg");
}

/* === General Styles === */
body {
    margin: 0;
    font-family: PeydaWeb;
    background: #fff;
    color: var(--color3);
    text-align: right;
    direction: rtl;
    overflow-x: hidden;
    transition: all 0.5s ease-in-out;
}

img {
    height: auto;
    width: 100%;
}

li {
    list-style: none;
}

a {
    color: var(--color3);
    transition: 0.5s;
    text-decoration: none;
}

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

.mg-auto {
    margin: 0 auto;
}

ul {
    padding: 0;
    margin: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #c0c0c0;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color1) !important;
}

button:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* === Icon Font Styles === */
i[class^="agh-"]:before, i[class*="agh-"]:before {
    font-family: aghicon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.agh-search:before {
    content: "\f101";
}

/* === Layout and Utilities === */
.containerlf {
    max-width: 1260px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.lg {
    direction: ltr;
}

.owl-carousel {
    direction: ltr;
}

/* === Header and Menu Styles === */
.hetop {
    border-top: 3px solid var(--color1);
    padding-bottom: 15px;
    padding-top: 10px;
}

.logo img {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    position: relative;
    top: 3px;
}

.menu {
    margin-top: 14px;
    margin-right: -2px;
}

.menu li {
    font-size: 13px;
    display: inline-block;
    padding: 15px 12px 20px 32px;
    color: var(--color3);
    position: relative;
}

.menu li a {
    position: relative;
    color: var(--color3);
}

.menu li a:hover, .menu ul li:hover > a {
    color: var(--color1);
}

a {}

.menu > ul > li a:before {
    content: '';
    width: 0;
    height: 15px;
    background-color: var(--color1);
    position: absolute;
    bottom: -4px;
    right: -19%;
    opacity: 0.1;
    border-radius: 3px;
    transition: width 0.5s;
}

.menu ul > li a:hover:before, .menu ul li:hover > a:before {
    width: 135%;
}

.menu .active a {
    font-family: peydawebbold;
    color: var(--color1);
}

.menu .active a:before {
    content: '';
    width: 134%;
    height: 15px;
    background-color: var(--color1);
    position: absolute;
    bottom: -4px;
    right: -10px;
    opacity: 0.1;
    border-radius: 3px;
}

/* Dropdown Menu */
.menu ul > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 320 512'%3E%3Cpath d='M143 352.3L7 216.3C-2.3 207-2.3 192.9 7 183.6l22.6-22.6c9.3-9.3 24.4-9.3 33.7 0l96.7 96.7 96.7-96.7c9.3-9.3 24.4-9.3 33.7 0l22.6 22.6c9.3 9.3 9.3 24.4 0 33.7l-136 136c-9.3 9.3-24.4 9.3-33.7 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    opacity: 0.5;
    top: 4px;
    position: relative;
    left: -1px;
}

.menu ul li:hover > a::after {
    transform: rotate(180deg);
    left: -4px;
}

.menu ul ul {
    position: absolute;
    top: 50px;
    right: 0;
    background: #ffffff;
    min-width: 210px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    z-index: 100;
    padding: 12px 0;
    border-radius: 9px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

.menu ul ul li {
    width: 100%;
    padding: 11px 0;
}

.menu ul ul li a {
    padding: 3px 12px;
    display: block;
}

.menu ul ul li a:hover {
    color: var(--color1);
}

.menu ul ul li a:before {
    display: none;
}

/* === Button Styles === */
.he-button {
    text-align: left;
    display: inline-block;
}

.he-button a {
    background-color: var(--color2);
    color: #FFFFFF;
    border-radius: 56px;
    font-size: 13px;
    padding: 7px 18px;
    display: inline-block;
    margin-top: 22px;
    border: 1px solid var(--color2);
}

.he-button a:hover {
    background: transparent;
    color: var(--color2);
}

.why-button a {
    background-color: var(--color1);
    color: #FFFFFF;
    border-radius: 56px;
    font-size: 14px;
    padding: 7px 18px;
    display: inline-block;
    margin-top: 22px;
    border: 1px solid var(--color1);
}

.why-button a:hover {
    background: transparent;
    color: var(--color1);
}

/* === Search Styles === */
.search .search-icon:before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(assets/images/search.svg);
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    background-size: 100%;
    bottom: -7px;
    right: -27px;
}

.search span {
    position: relative;
}

.he-button .search, .he-button .login {
    display: inline-block;
}

/* === Owl Slider Styles === */
.owl-slider:before {
    content: '';
    width: 95%;
    height: 100%;
    background-color: var(--color1);
    position: absolute;
    border-radius: 30px;
    left: 0;
    top: 8px;
    margin: 0 auto;
    right: 0;
}

.owl-slider:after {
    content: '';
    width: 90%;
    height: 100%;
    background-color: #EDEDED;
    position: absolute;
    border-radius: 30px;
    right: 0;
    left: 0;
    top: 17px;
    z-index: -1;
    margin: 0 auto;
}

.owl-sliderm {
    display: none !important;
}

/* === Diet Section Styles === */
.diet {
    margin-top: 100px;
    margin-bottom: 50px;
}

.diet-title {
    text-align: center;
    margin-bottom: 30px;
}

.diet-title p {
    font-size: 16px;
    color: var(--color4);
}

.diet-title h1 {
    font-size: 37px;
    color: var(--color1);
    margin-top: 7px;
    font-family: PeydaWebbold;
}

.diet-title span {
    color: var(--color2);
}

.diet-img {
    text-align: right;
    width: 40%;
}

.diet-img img {
    border-radius: 15px;
    margin: 0 auto;
    width: auto;
    height: 129px;
    display: block;
}

.diet-img2 img {
    margin: 0 auto;
    width: auto !important;
    height: 40px;
    position: absolute;
    left: 18px;
    bottom: 16px;
    border-radius: 0 !important;
}

.diet-left {
    margin-top: 10px;
    width: 60%;
    padding-right: 8px;
}

.diet-left .part1 {
    font-size: 12px;
    color: var(--color2);
    font-family: arial;
}

.diet-left .part2 {
    font-size: 13px;
    color: var(--color1);
    font-family: peydawebbold;
    display: block;
}

.diet-left .part3 {
    font-size: 11px;
    color: var(--color3);
    display: block;
    padding-top: 5px;
}

.diet-left .part4 {
    position: relative;
}

.diet-left .part4 span:before {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(assets/images/diet-right.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    top: 15px;
}

.diet-box {
    margin-top: 5px;
}

.diet-box a {
    display: flex;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    padding: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    position: relative;
}

.diet-box a:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to right, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 17px;
    transition: 0.5s;
}

/* === Why Section Styles === */
.why-img img {
    width: 100%;
    border-radius: 15px;
}

.why-left {
    margin-top: 10px;
}

.why-left .part1 {
    font-family: peydawebbold;
    font-size: 12px;
    color: var(--color4);
}

.why-left h2 {
    font-family: peydawebbold;
    font-size: 27px;
    color: var(--color1);
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
}
.why-left h2 span {
    color: var(--color2);
}


.why-left p {
    line-height: 26px;
    color: var(--color3);
    font-size: 12px;
    margin-top: 10px;
}

.why-left ul {
    margin-top: 6px;
}

.why-left ul li {
    font-size: 12px;
    line-height: 38px;
    color: var(--color3);
    width: 49%;
    display: inline-block;
    position: relative;
    padding-right: 21px;
}

.why-left ul li:before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(assets/images/diet-before.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 11px;
    right: 0;
}

.why-box {
    display: flex;
    box-sizing: border-box;
    background: #FAFFF4;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    position: relative;
    padding: 31px 30px;
    margin: 0 auto;
    top: 73px;
}

.why-box:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to top, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 30px;
    transition: 0.5s;
}

/* === Service Section Styles === */
.servicebox {
    background-color: var(--color1);
    border-radius: 30px;
    padding: 116px 65px 15px;
    position: relative;
}

.servicebox .col-lg-3 {
    padding: 0 7px;
}

.service-title {
    text-align: center;
    margin-bottom: 30px;
}

.service-title .title1 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: block;
}

.service-title h3 {
    font-family: peydawebbold;
    font-size: 39px;
    color: #FFFFFF;
}

.service-title .title2 {
    color: var(--color2);
}

.ser-img img {
    margin: 0 auto;
    width: auto;
    height: 48px;
}

.serbox1, .serbox2 {
    display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 37px 19px;
    background-repeat: no-repeat;
}

.serbox1 {
    background-image: url(assets/images/ser-back1.svg);
}

.serbox2 {
    background-image: url(assets/images/ser-back2.svg);
}

.serbox1 span, .serbox2 span {
    color: var(--color1);
    font-size: 18px;
    font-family: peydawebbold;
}

.serbox1 p, .serbox2 p {
    line-height: 24px;
    color: var(--color3);
    font-size: 13px;
    margin-top: 8px;
}

.serbox1 a, .serbox2 a {
    font-size: 12px;
    color: var(--color2);
    position: relative;
}

.serbox1 span.more:before, .serbox2 span.more:before {
    content: '';
    width: 5px;
    height: 5px;
    background-image: url(assets/images/more-before.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    left: -8px;
    bottom: 6px;
}

/* === Blog Section Styles === */
div.blog {
    margin-top: 70px;
}

.blog-title1 {
    text-align: right;
    position: relative;
}

.blog-title1 .title1 {
    font-size: 16px;
    color: var(--color4);
}

.blog-title1 .title2 {
    font-size: 33px;
    color: var(--color1);
    font-family: peydawebbold;
    margin-top: 8px;
}

.blog-title1 span {
    color: var(--color2);
}

.blog-title2 {
    text-align: left;
    position: absolute;
    bottom: 16px;
    left: 0;
}

.blog-title2 a {
    background-color: var(--color1);
    color: #FFFFFF;
    border-radius: 56px;
    font-size: 14px;
    padding: 7px 18px;
    display: inline-block;
    margin-top: 22px;
    border: 1px solid var(--color1);
}

.blog-title2 a:hover {
    background: transparent;
    color: var(--color1);
}

.blog-img img {
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.blog-box {
    background: #FFFFFF;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 10px;
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    direction: rtl;
}

.blog-box .bl1 {
    font-family: peydawebbold;
    font-size: 13px;
    color: var(--color4);
    margin-top: 10px;
    display: block;
    min-height: 35px;
}

.blog-box .bl2 {
    font-size: 11px;
    color: var(--color3);
    line-height: 18px;
    display: block;
    padding-top: 7px;
    height: 60px;
    overflow: hidden;
}

.bl-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    /* flex-direction: row-reverse; */
    background-color: #7bb23f21;
    border-radius: 4px;
    padding: 10px;
}

.bl-footer p {
    font-size: 11px;
    color: var(--color3);
    padding-right: 21px;
    position: relative;
}

.bl-footer p:before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(assets/images/date-before.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    right: 2px;
    top: -1px;
}

.bl-footer span {
    font-size: 11px;
    color: var(--color1);
    padding-left: 16px;
    font-family: PeydaWebbold;
    position: relative;
}

.bl-footer span:before {
    content: '';
    width: 8px;
    height: 8px;
    background-image: url(assets/images/more-before2.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    left: 5px;
    top: 5px;
}

.bl-footer span:hover {
    color: var(--color2);
}

/* === Result Section Styles === */
.result-title {
    margin-top: 50px;
    text-align: center;
    margin-bottom: 13px;
}

.result-title .title1 {
    font-size: 16px;
    color: var(--color4);
}

.result-title .title2 {
    color: var(--color1);
}

.result-title h4 {
    font-family: peydawebbold;
    font-size: 37px;
    color: var(--color2);
    margin-top: 10px;
}

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

.result-text span {
    color: var(--color1);
    font-size: 22px;
    font-family: peydawebbold;
    margin-top: 10px;
    display: block;
}
.result-title h4 span {
    color: var(--color1);
}
.result-text p {
    color: var(--color3);
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.result-img img {
    border-radius: 9px;
    margin: 0 auto;
    width: 90%;
}

.resultbox {
    background: #FFFFFF;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 8px 16px;
    margin-top: 20px;
    display: flex;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 90%;
    position: relative;
    align-content: space-between;
    flex-direction: column;
    margin: 0 auto;
}

.resultbox:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 15px;
    transition: 0.5s;
}

/* === Footer Styles === */
.footer-box {
    display: flex;
    box-sizing: border-box;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    padding: 40px 65px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    position: relative;
    background-color: #FAFFF4;
    border-radius: 30px;
    margin-top: 70px;
}

.footer-box:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -2px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 30px;
    transition: 0.5s;
}

.logo-f img {
    margin: 0 auto;
    padding: 21px 0 10px;
    width: 170px;
}

.logo-f p {
    font-size: 13px;
    line-height: 32px;
    color: var(--color3);
}

.logo-f ul {
    padding-top: 9px;
}

.logo-f li {
    display: inline-block;
    text-align: right;
    margin-left: 13px;
}

.tiktok a:before, .inesta a:before, .linkdin a:before, .youtube a:before {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: relative;
    right: 0;
}

.tiktok a:before {
    width: 23px;
    height: 24px;
    background: url(assets/images/tiktok.svg);
    background-size: 20px;
    background-repeat: no-repeat;
}

.inesta a:before {
    width: 21px;
    height: 21px;
    background: url(assets/images/instagram.svg);
    background-size: 100%;
}

.linkdin a:before {
    width: 22px;
    height: 22px;
    background: url(assets/images/linkedin.svg);
    background-size: 100%;
}

.youtube a:before {
    width: 24px;
    height: 22px;
    background: url(assets/images/youtube.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.menu-footer {
    line-height: 40px;
    padding-bottom: 10px;
}

.menu-footerbox {
    display: inline-block;
    padding-right: 20px;
}

.menu-footerbox span {
    color: var(--color1);
    font-family: peydawebbold;
    font-size: 16px;
    margin-bottom: 17px;
    display: block;
}

.menu-footerbox li {
    font-size: 13px;
    color: var(--color3);
}

.menu-footerbox li a:hover {
    color: var(--color1);
}

.menu-footerbox span:before {
    content: '';
    width: 74%;
    height: 1px;
    background-color: #D2D2D2;
    display: inline-block;
    position: relative;
    bottom: -60px;
}

.menu-footer1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: flex-start;
    justify-content: space-around;
}

.copy-right {
    text-align: center;
}

.copy-right p {
    font-size: 14px;
    color: var(--color3);
    padding: 14px 0;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgb(255 255 255 / 0%);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.nav-button svg path {
    stroke: #7BB23F; 
}

.nav-button:hover svg path {
    stroke: #7BB23F; 
}

.owl-diet .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.owl-diet .diet-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  direction: rtl;
}

.owl-diet .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 9999;
}

.owl-diet .owl-nav button {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-diet {
  position: relative;
}

.owl-diet::before,
.owl-diet::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; 
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.owl-diet::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.owl-diet::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.owl-carousel .owl-nav button.owl-prev svg,
.owl-carousel .owl-nav button.owl-next svg {
  width: 35px; 
  height: 35px; 
  fill: #7BB23F; 
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.serbox1 span.more, .serbox2 span.more {
    font-family: 'PeydaWebbold';
    font-size: 12px;
    color: var(--color2);
    position: relative;
}

a.serbox1:hover , a.serbox2:hover {
    opacity: 0.9;
}

.servicebox::before,
.servicebox::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.servicebox::before {
  background-image: url("assets/images/leaf-left.svg");
  top: 90px;
  left: 180px;
}

.servicebox::after {
  background-image: url("assets/images/leaf-right.svg");
  top: 130px;
  right: 180px;
  width: 50px;
  height: 50px;
}

.why {
    position: relative;
    z-index: 999;
}

.blog .owl-stage-outer, .result .owl-stage-outer {
    padding: 20px 0;
}
.nav-button.owl-next {
    right: -40px;
}

.nav-button.owl-prev {
    left: -40px;
}
.sldier .nav-button.owl-prev{
    left: 0px;
}
.sldier .nav-button.owl-next{
    right: 0px;
}
.logo-f ul li a {
    filter: brightness(0);
    opacity: 0.5;
}

.logo-f ul li a:hover {
    filter: none;
    opacity: 1;
}
.blog-title {
    position: relative;
    margin-bottom: 8px;
}

.search-container {
  position: relative;
}

.search-icon {
  cursor: pointer;
  font-size: 20px;
}

.search-popup {
  display: none;
  position: absolute;
  top: 22px; /* Ã™ÂÃ˜Â§Ã˜ÂµÃ™â€žÃ™â€¡ Ã˜Â§Ã˜Â² Ã˜Â¢Ã›Å’ÃšÂ©Ã™Ë†Ã™â€  */
  left: 0;
  background: #fafff4;
  padding: 10px;
  border-radius: 9px;
  box-shadow: 0 2px 7px rgb(0 0 0 / 6%);
  z-index: 999;
  width: 250px; /* Ã™â€šÃ˜Â§Ã˜Â¨Ã™â€ž Ã˜ÂªÃ˜ÂºÃ›Å’Ã›Å’Ã˜Â± */
  border-bottom: 1px solid var(--color1);
}

.search-popup input {
  width: 71%;
  padding: 5px;
  border: 1px solid #e8e8e8;
  border-radius: 7px;
  font-family: 'PeydaWeb';
  background: #fafff4;
}

.search-popup button {
  padding: 8px 10px;
  border: none;
  background: #7BB23F;
  color: #fff;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  left: 7px;
  top: 0;
  font-family: 'PeydaWeb';
  display: inline-block;
  width: 24%;
  font-size: 10px;
}

.search-container.active .search-popup {
  display: flex;
  justify-content: space-between;
}


.blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


.blog-img:after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(216, 175, 104, 0) 0%, rgb(123 178 63) 99.81%);
}

.blog-box:hover .blog-img:after {
    height: 100%
}

.blog-img:before {
    content: '';
    width: 161px;
    position: absolute;
    top: 20px;
    right: 0;
    margin: 0 auto;
    left: 0;
    background: url(assets/images/logo.svg) no-repeat;
    height: 60px;
    transition: 0.5s;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    filter: brightness(0) invert(1)
}

.blog-box:hover .blog-img:before {
    opacity: 1;
    top: 49px;
}


.banner-slider {
    border-radius: 10px;
    overflow: hidden;
}

  .open_menu{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: fixed;
      /* this left's value is important */
      right: -100%;
      top:0;
      /* if you'd change the width's value then you have to change left's value of the .open_menu as well*/
      width: 100%;
      height: 100%;
      background-color: #FAFFF4;
      -webkit-transition: 450ms cubic-bezier(0.10, 0.0, 0, 1);
      transition: 450ms cubic-bezier(0.10, 0.0, 0, 1);
      z-index: 99999999;
  }
  .dark .open_menu{
      background: #545454;
  }
  .menu-content{
      display: block;
      width: 100%;
      overflow-y:scroll;
      overflow-x:hidden;
      padding-top: 10px;
  }
  .menu-content::-webkit-scrollbar{
      width: 0;
  }
  
  .opened{
      right: 0;
  }
  
  
  .toOpen{
      display: block;
      width: 25px;
      position: absolute;
      cursor: pointer;
      padding: 20px;
      right: -165px;
  }
  /* The open and close mark. It toggles automatically */
  .toOpened{
      /* width: 25px; */
  }
  .toOpened .line{
      width: 25px !important;
      -webkit-transition: 0ms !important;
      transition: 0ms !important;
  }
  
  
  .toOpened .one{
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      position: absolute;
      top: 25px;
  }
  
  .toOpened .two{
      opacity: 0;
  }
  
  .toOpened .three{
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      position: absolute;
      top: 25px;
  }
  
  
  
  .toOpen .line{
      height: 3px;
      margin: 0 0 2px 0;
      background-color: #dc6161;
      -webkit-transition: 150ms ease-in-out;
      transition: 150ms ease-in-out;
  }
  
  
  .toOpen .two{
      width: 15px;
  }
  .toOpen .three{
      width: 20px;
  }
  
  .toOpen:hover div{
      width: 25px;
      
  }
  .line.one {
    transition: 400ms cubic-bezier(0, 1.05, 0.26, 0.82) !important;
  }
  .toOpened > .three {
    transition: 400ms cubic-bezier(0, 1.05, 0.26, 0.82) !important;
  }
  
  .open_menu h1{
      text-align: center;
      color: white;
  }
  .menu-logo{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      font-family: montserrat;
      font-weight: 700;
      margin: 25px 0;
      text-align: center;
  }
  
  .menu-content ul{
      list-style-type: none;
      text-align: center;
  }
  
  .menu-content ul li{
      text-align: right;
      border-bottom: 1px solid #88888826;
  }
  .menu-content ul li:first-child{
      border-top: 1px solid #88888826;
  }
  
  .menu-content ul li a{
      font-weight: 400;
      font-size: 14px;
      display: block;
      padding: 16px 10px;
      text-decoration: none;
      color: #929292;
      -webkit-transition: 100ms ease-in-out;
      transition: 100ms ease-in-out;
      text-align: center;
  }
  
  .menu-content ul li a:hover{
      background: var(--color1);
      color: #fff !important;
  }

.menu-logo img {
    width: 110%;
    margin: 0 auto;
}

.menu-content .menu-btn svg {
    width: 22px;
    height: auto;
    position: absolute;
    left: 20px;
    fill: var(--color1);
    top: 45px;
}

.menu-content ul li ul li a {
    background: #e7f6e3;
    padding: 10px 40px;
    border-bottom: 1px solid #92bc6540;
}
.dark .menu-content ul li ul li a {
    background: #3b3b3b8a;
    padding: 10px 40px;
}

.menu-content ul li ul li {
    border: navajowhite;
}

.logomobile img {
    height: 70px;
    width: auto;
    text-align: center;
}

.logomobile {
    padding: 10px 20px 20px 20px;
}

.menu-content .menu-btn.toOpened {
    top: 0px;
    right: 20px;
}

.logomobile {
    text-align: center;
}

.menu-content ul li.menu-item-has-children > a {
  position: relative;
  padding-left: 30px;
}

.menu-content ul li.menu-item-has-children > a::after {
  content: "+";
  position: absolute;
  left: 15px;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.menu-content ul li.open > a::after {
  content: "-";
}

.menu-content ul li ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.titlespage {
    text-align: center;
}
.titlespage p {
    font-family: peydawebbold;
    color: var(--color4);
    font-size: 15px;
    margin-bottom: 13px;
}
.titlespage h1 {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 37px; 
}
.titlespagebox h1 span {
  color: var(--color2);
  font-family: 'PeydaWebbold';
  font-size: 37px;
  width: unset;
}
.titlespagebox {
  background: linear-gradient(0deg, #FFFFFF 0%, #F4F6F0 100%);
  border-radius: 30px;
  padding: 40px 0px 60px 0px;
}
.aboutpage h2 {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 45px; 
}
.aboutpage span {
    font-family: peydawebbold;
    color: var(--color2);
    font-size: 17px;
    margin-top: 11px;
    display: block;
}
.aboutpage p {
    line-height: 50px;
    font-size: 16px;
    color: var(--color3);
    margin-top: 20px;
}
.about-left img {
    width: 90%;
}
.about-right {
    margin-top: 20px;
}
.aboutpage2 {
    margin-top: 25px;
}
.about-right2 img {
}
.aboutpage2 p {
    line-height: 50px;
    font-size: 15px;
    color: var(--color3);
}
.story-section {
    margin-top: 100px;
}

.story-title h2 {
  font-size: 36px;
  font-family: peydawebbold;
  color: var(--color1);
  text-align: center;
  margin-bottom: 30px;
}

.story-title span {
  color: var(--color2);
}

.story-subtitle h3 {
  font-size: 15px;
  color: var(--color1);
  margin-top: 34px;
  text-align: right;
}

.story-text {
  font-size: 15px;
  color: var(--color3);
  line-height: 45px;
  margin: 18px auto;
  max-width: 100%;
  text-align: justify;
}

/* Ã™â€¦Ã˜Â­Ã˜Â¯Ã™Ë†Ã˜Â¯ ÃšÂ©Ã˜Â±Ã˜Â¯Ã™â€  Ã˜Â¨Ã™â€¡ Ã›Å’ÃšÂ© Ã˜Â®Ã˜Â· */
.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Ã™ÂÃ™â€šÃ˜Â· Ã›Å’ÃšÂ© Ã˜Â®Ã˜Â· */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.story-link {
  display: inline-block;
  color: var(--color1);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  display: block;
  text-align: center;
}

.story-link:hover {
  color:  var(--color2);
}
.bg-box {
    box-sizing: border-box;
    background: #FAFFF4;
    /* box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1); */
    border-radius: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    position: relative;
    padding: 50px;
    margin: 0 auto;
    text-align: center;
}
.bg-box:before{
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 30px;
    transition: 0.5s;
}
.vital-points {
    margin-top: 80px;
    margin-bottom: 60px;
}
.point-title {
    text-align: center;
    margin-bottom: 20px;
}
.point-title .title1 {
    font-size: 17px;
    color: var(--color4);
}
.point-title .title2 {
    color: var(--color2);
}
.point-title h4 {
    font-family: peydawebbold;
    font-size: 39px;
    color: var(--color1);
    margin-top: 10px;
    display: block;
}
.point-title h4 span {
    color: var(--color2);
}
.point-img img {
    margin: 0px auto;
    width: auto;
    height: 60px;
    padding-top: 10px;
    margin-bottom: 20px;
}
.point-box {
    text-align: center;
}
.point-text span {
    font-family: peydawebbold;
    font-size: 14px;
    color: var(--color1);
    display: block;
    height: 47px;
    /* line-height: 28px; */
}
.point-text p {
    font-size: 11px;
    color: var(--color3);
    margin-top: 5px;
    /* line-height: 21px; */
    height: 42px;
}
.point-box {
 box-sizing: border-box;
 background: #FFFFFF;
 box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
 border-radius: 16px;
 padding: 11px 26px;
 flex: 1 1 calc(20% - 20px); /* 5 Ã˜ÂªÃ˜Â§ Ã˜Â¯Ã˜Â± Ã™â€¡Ã˜Â± Ã˜Â±Ã˜Â¯Ã›Å’Ã™Â */
 display: flex;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 flex-direction: column;
 margin-top: 28px;
 position: relative;
}
.vital-pointsbox {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
}

.about-left {
    text-align: center;
}
.point-box:before{
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 16px;
    transition: 0.5s;
}
.books {
    margin-top: 20px;
}
.book-img {
    text-align: center;
}
.book-img img {
    width: 90%;
}
.books p {
    line-height: 50px;
    font-size: 16px;
    color: var(--color3);
    margin-top: 10px;
}
.book-right h2 {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 30px;
}

.book-right img {
    float: left;
    width: 500px;
}
.about-right img {
    float: left;
    width: 487px;
    margin-right: 20px;
}
.introduction img {
    float: left;
    width: 500px;
}
.introduction p {
    line-height: 50px;
    font-size: 16px;
    color: var(--color3);
    margin-top: 15px;
}
.title-ser {
    text-align: center;
}
.title-ser h2 {
    font-family: peydawebbold;
    font-size: 39px;
    color: var(--color1);
    margin-bottom: 30px;
}
.title-ser span {
    color: var(--color2);
}
.arya-services {
    margin-top: 70px;
}
.aryaserbox1 span {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 20px;
}
.aryaserbox1 p {
    color: var(--color3);
    font-size: 12px;
    line-height: 24px;
    margin-top: 15px;
}
.aryaserbox2 span {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 20px;
}
.aryaserbox2 p {
    color: var(--color3);
    font-size: 12px;
    line-height: 24px;
    margin-top: 15px;
}
.aryaserbox1 {
    background-image: url(assets/images/rectangle1.png);
    text-align: right;
     display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 37px 19px;
    background-repeat: no-repeat;
}
.aryaserbox2 {
    background-image: url(assets/images/rectangle2.png);
    text-align: right;
     display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 37px 19px;
    background-repeat: no-repeat;
}
.school p {
    line-height: 41px;
    color: var(--color3);
    font-size: 15px;
}
.school-text {
    margin-top: 40px;
}
.school span {
    color: var(--color1);
    font-family: peydawebbold;
    font-size: 24px;
    margin: 10px 0;
    display: block;
    background: #fafff4;
    padding: 10px 15px;
    border-radius: 10px;
}

.nntop  .servicebox {
    padding-top: 50px;
    margin: 90px 0;
}
#story-text:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px; /* Ã˜Â§Ã˜Â±Ã˜ÂªÃ™ÂÃ˜Â§Ã˜Â¹ ÃšÂ¯Ã˜Â±Ã˜Â§Ã˜Â¯Ã›Å’Ã™â€ Ã˜Âª */
  background: linear-gradient(to top, rgb(250 255 244) 21%, rgba(243, 255, 233, 0) 100%);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  pointer-events: none;
}
header.sticky {
    position: sticky;
    background: #fafff4;
    top: 0;
    z-index: 99999;
    box-shadow: 0px 2px 4px #00000005;
}

.story-section:nth-child(odd) .story-text:before {
}

.encldl b {
    font-family: 'PeydaWebbold';
    color: var(--color1);
    font-size: 19px;
}

.encldl ol {
    padding: 0;
    text-align: left;
    font-family: arial;
}

.encldl ol li:before {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 6px;
    width: 6px;
    height: 6px;
    background: var(--color1);
    border-radius: 10px;
}

.encldl ol li {
    direction: ltr;
    margin-bottom: 20px;
}

.timeline-section {
  background: #fff;
  padding: 60px 0;
  direction: rtl;
}

.timeline-title {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 80px;
  color: var(--color1);
  font-family: 'PeydaWebbold';
  position: relative;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  display: flow-root;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 2px;
  background: #d0e9d2;
  margin-right: -1px;
}

/* Ã˜Â¢Ã›Å’Ã˜ÂªÃ™â€¦Ã¢â‚¬Å’Ã™â€¡Ã˜Â§ */
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}

.timeline-content {
  background: #f5fff6;
  border: 1px solid #b5e0b8;
  border-radius: 10px;
  padding: 20px;
  width: 45%;
  position: relative;
  box-sizing: border-box;
  background: #FAFFF4;
  border-radius: 15px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 15px 20px;
}



/* Ã˜Â³Ã˜Â§Ã™â€ž */
.timeline-content .year {
  display: flex;
  font-size: 15px;
  font-weight: bold;
  color: var(--color1);
  margin-bottom: 5px;
  align-items: center;
}

/* Ãšâ€ Ã™Â¾ Ã™Ë† Ã˜Â±Ã˜Â§Ã˜Â³Ã˜Âª */
.timeline-item:nth-child(odd) .timeline-content {
  float: right;
  clear: both;
}

.timeline-item:nth-child(even) .timeline-content {
  float: left;
  clear: both;
}

/* Ã˜Â®Ã˜Â· Ã™Ë†Ã˜Â³Ã˜Â· Ã˜ÂªÃ˜Â§Ã›Å’Ã™â€¦Ã¢â‚¬Å’Ã™â€žÃ˜Â§Ã›Å’Ã™â€  */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;               /* Ã™Ë†Ã˜Â³Ã˜Â· ÃšÂ©Ã˜Â§Ã™â€ Ã˜ÂªÃ›Å’Ã™â€ Ã˜Â± */
  transform: translateX(-50%);
  width: 1px;
  background: #D0D0D0;     /* Ã˜Â³Ã˜Â¨Ã˜Â² Ã˜Â®Ã›Å’Ã™â€žÃ›Å’ ÃšÂ©Ã™â€¦Ã˜Â±Ã™â€ ÃšÂ¯ */
  z-index: 1;
}
.timeline-content:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to right, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 15px;
    transition: 0.5s;
}

.timeline-content h3 {
    font-size: 15px;
    color: #1F3F2E;
    margin: 0px 0 6px 0;
}

.timeline-content p {
    font-size: 12px;
}


.timeline-item:nth-child(even) .timeline-content:before {
    background: linear-gradient(to left, #ffffff 40%, var(--color1));
}

.timeline-item .timeline-content::after {
  content: "";
  position: absolute;
  top: 20px; /* Ã™ÂÃ˜Â§Ã˜ÂµÃ™â€žÃ™â€¡ Ã˜Â§Ã˜Â² Ã˜Â¨Ã˜Â§Ã™â€žÃ˜Â§Ã˜Å’ Ã™â€¦Ã˜ÂªÃ™â€ Ã˜Â§Ã˜Â³Ã˜Â¨ Ã˜Â¨Ã˜Â§ ÃšÂ©Ã˜Â§Ã˜Â±Ã˜Âª */
   /* Ã˜Â³Ã™â€¦Ã˜Âª Ã˜Â±Ã˜Â§Ã˜Â³Ã˜Âª ÃšÂ©Ã˜Â§Ã˜Â±Ã˜Âª */
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml,<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="7.5" cy="7" r="6" stroke="%237BB23F" stroke-width="2"/><circle cx="7.50014" cy="7.00014" r="3.57143" fill="%237BB23F"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  left: -47px;
}
.timeline-item:nth-child(even) .timeline-content:after {
    left: unset;
    right: -65px;
}

h2.timeline-title:before {
    content: '';
    background: url('data:image/svg+xml,<svg width="48" height="32" viewBox="0 0 48 32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_353_249)"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.4751 26.706C35.3659 24.4125 32.6772 23.4367 28.0398 23.1581L32.7958 19.3253C36.6645 19.024 40.2402 19.4287 43.7614 20.1643C40.1392 18.7437 37.1385 18.5492 33.3513 18.5989L40.2587 12.0724C42.1773 12.5368 43.8132 12.5206 45.8057 12.2695C43.984 12.3401 42.5372 12.2926 40.7903 11.5082L47.2627 5.63311L37.5373 13.5963C36.9181 11.9451 36.5583 10.4552 36.7503 8.44595C36.1263 10.5367 36.5653 12.1971 36.8451 14.2552L29.8579 20.1904C30.212 17.4648 30.0403 14.5225 28.2407 11.8758C28.817 13.3112 30.52 18.3382 28.824 20.9435L21.6758 26.8534C18.3582 6.29159 32.8277 7.71043 48 5C45.2896 22.1857 47.0108 34.9667 22.9611 28.7859L19.2942 31.8294C18.7047 32.3187 17.0158 30.721 18.787 30.7411L27.2874 24.0921C31.8354 24.1247 35.138 25.0147 38.4751 26.706Z" fill="%237BB23F"/><path fill-rule="evenodd" clip-rule="evenodd" d="M17.0958 13.1301C14.8912 13.3457 13.3713 13.9614 11.2885 15.6218L11.8446 12.1642C13.3773 10.5517 15.056 9.35236 16.8385 8.31492C14.7502 9.09922 13.3971 10.1675 11.8026 11.6416L12.2418 6.21097C13.2374 5.67278 13.9282 5.03836 14.6808 4.16696C13.9317 4.89591 13.2971 5.43071 12.2518 5.76666L12.7556 0.780469L11.6669 7.90431C10.7696 7.43831 10.0448 6.94155 9.35579 6.01179C9.89199 7.14201 10.716 7.68101 11.6248 8.45058L10.9247 13.6599C10.0299 12.3627 8.82801 11.175 7.04592 10.7377C7.8421 11.1282 10.4962 12.6167 10.7731 14.3773L9.99474 19.6377C0.693027 12.1497 7.40231 7.20326 12.8269 0.227861C18.2651 8.5899 23.9016 13.3751 11.2837 19.968L10.889 22.6714C10.8255 23.106 9.493 23.0733 10.2554 22.4023L11.3263 16.3084C13.2766 14.5775 15.0251 13.6897 17.0958 13.1301Z" fill="%237BB23F"/></g><defs><clipPath id="clip0_353_249"><rect width="48" height="32" fill="white"/></clipPath></defs></svg>');
    width: 50px;
    height: 50px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 93px;
}

.healthimg img {
    border-radius: 7px;
    height: 100%;
    display: block;
}
.healthimg:before{
    content: '';
    background-color: var(--color1);
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    border-radius: 7px;
    opacity: 70%;
    left: 0;
    transition: 0.5s;
}
.healthbox span {
    text-align: center;
    position: absolute;
    color: #FFFFFF;
    font-family: peydawebbold;
    font-size: 19px;
    top: 50%;
    margin: 0px auto;
    right: 0px;
    left: 0px;
    transform: translateY(-50%);
    width: 84%;
}    
.healthbox {
    text-align: center;
    margin-top: 30px;
    padding: 0 10px;
}
.healthimg {
    position: relative;
}
.sidbar-box1 span {
    font-family: peydawebbold;
    font-size: 15px;
    color: var(--color1);
    padding-right: 5px;
    position: relative;
    margin-bottom: 23px;
    display: block;
}
.sidbar-box1 span:before{
    content: '';
    width: 215px;
    height: 1px;
    background-color: #E1E1E1;
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -11px;
}
.sidbar-box1 ul li {
    font-size: 13px;
    color: var(--color3);
    display: block;
    padding-top: 10px;
    position: relative;
    padding-right: 19px;
    text-align: right;
}
.sidbar-box1 ul li:before{
    content: '';
    width: 7px;
    height: 7px;
    background: url(assets/images/sid-before.svg);
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    background-size: 100%;
    top: 1px;
    right: -5px;
}
.sidbar-box1 ul {
    /* padding-top: 15px; */
}
.popblog a {
    display: flex;
    align-items: stretch;
    /* margin-top: 10px; */
    margin-top: 12px;
}
.popblog-img img {
    margin: 0 auto;
    width: auto;
    height: 50px;
    border-radius: 6px;
}
.popblog .pop-text {
    padding-right: 10px;
}
.popblog .date {
    font-size: 11px;
    color: var(--color1);
}
.popblog .explain {
    font-size: 12px;
    color: var(--color3);
    padding-top: -1px;
}
.content-blog h1 {
    font-size: 28px;
    color: var(--color1);
    position: relative;
    padding-bottom: 10px;
    font-family: 'PeydaWebbold';
}
.content-blog h1:before{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #E1E1E1;
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -2px;
}
.datefact {
    display: flex;
    padding-top: 14px;
    padding-bottom: 10px;
}
.datefact .cat {
    padding-right: 23px;
    position: relative;
}
.datef {
    color: var(--color3);
    font-size: 11px;
    padding-right: 32px;
    position: relative;
}
.cat span {
    color: var(--color3);
    font-size: 11px;
}
.cat p {
    color: var(--color3);
    font-size: 11px;
}
.datefact .cat:before{
    content: '';
    width: 15px;
    height: 15px;
    background: url(assets/images/datefact.svg);
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    background-size: 100%;
    right: 4px;
}
.datefact .datef:before{
    content: '';
    width: 15px;
    height: 15px;
    background: url(assets/images/datef.svg);
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    background-size: 100%;
    right: 14px;
}
.single-text p {
    line-height: 38px;
    color: var(--color3);
    font-size: 15px;
    text-align: right;
    margin-top: 13px;
    position: relative;
}
.single-text ul , .single-text ol  {
    margin-top: 10px;
    padding-right: 0;
}
.single-text ul li:before , .single-text ol li:before{
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--color1);
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    border-radius: 12px;
    right: 0px;
    top: 17px;
}
.single-text ul li , .single-text ol li {
    line-height: 38px;
    color: var(--color3);
    font-size: 16px;
    text-align: right;
    position: relative;
    padding-right: 17px;
}
.blog-button span {
    color: var(--color3);
    font-size: 16px;
    /* font-family: peydawebbold; */
}
.blog-button {
    display: inline-block;
    margin-top: 27px;
    width: 100%;
    border-top: 1px solid #ececec;
    padding-top: 15px;
}
.blog-button .button2 {
    display: inline-block;
    margin-right: 10px;
}

.blog-button .button1 a {
    background-color: transparent;
    color: var(--color1);
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid var(--color1);
    padding: 2px 12px;
    display: inline-block;
    margin-right: 6px;
}   
.blog-button .button1 {
    display: inline-block;
}
.similar-blog h2 {
    font-size: 30px;
    color: var(--color1);
    text-align: center;
    margin-bottom: 10px;
}
.similar-blog {
    margin-top: 60px;
}
.content-blog {
    margin-top: 34px;
}
.sidbar-box1:before{
    content: '';
    position: absolute;
    top: -3px;
    bottom: 0px;
    left: -3px;
    right: -3px;
    background: linear-gradient(to top, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 15px;
    transition: 0.5s;
}
.sidbar-box1 {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 20px 14px;
    margin-top: 32px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    box-sizing: border-box;
    background: #FAFFF4;
    position: relative;
}

.col-lg-3 .blog-box {
    width: 100%;
    margin: 15px 0;
}

.healthbox:hover .healthimg:before {
    background: #f2ba41;
}


.blog-button .button1 a:hover {
    background: var(--color1);
    color: #fff;
}

.similar-blog .blog-box {
    width: 100%;
}
.agh-pagination span , .agh-pagination a {

padding: 5px 9px;

border: 1px solid;

border-radius: 8px;

height: 30px !important;

width: 30px !important;

margin: 0px 5px;

font-size: 14px;

color: #b1b1b1;
}



a.next.page-numbers , a.prev.page-numbers {

    font-size: 0;

    position: relative;

}



a.next.page-numbers:before {
    content: '';
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    width: 7px;
    height: 7px;
    box-shadow: black;
    position: absolute;
    /* background: white; */
    right: -3px;
    transform: rotate(135deg);
    left: 0;
    bottom: 15px;
    margin: 0 auto;
}

a.prev.page-numbers:before {
    content: '';
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    width: 7px;
    height: 7px;
    box-shadow: black;
    position: absolute;
    /* background: white; */
    right: 3px;
    transform: rotate(310deg);
    left: 0;
    bottom: 15px;
    margin: 0 auto;
}

a.next.page-numbers:hover, a.prev.page-numbers:hover , .agh-pagination a:hover {
    background: var(--color1);
    border-color: var(--color1);
    color: #fff;
}



.comment input {
    border-radius: 6px;
    border: none;
    font-size: 12px;
    height: 40px;
    width: 100%;
    padding: 0 15px;
    font-family: 'PeydaWeb';
    border: 1px solid #C8C8C8;
}
.comment textarea {
    border-radius: 10px;
    border: none;
    font-size: 12px;
    height: 130px;
    width: 100%;
    font-family: 'PeydaWeb';
    padding: 15px 15px;
    border: 1px solid #C8C8C8;
}

.comment button#submit {
    border: none;
    background: var(--color1);
    padding: 8px 50px;
    color: #fff;
    font-weight: 100;
    border-radius: 6px;
    font-family: 'PeydaWeb';
    font-size: 14px;
    margin-top: 13px;
}

span.cmtitle i {
    margin-left: 6px;
    position: relative;
    top: 6px;
    font-size: 19px;
    color: var(--color2);
}

span.cmtitle {
    font-size: 15px;
    margin-bottom: 6px;
    display: block;
    color: var(--color1);
    font-family: 'PeydaWebbold';
}


.cm1 {margin-bottom: 10px;}

.comment .float-right.mb-5 {
    text-align: left;
}
.dark .cat , .dark .cat a , .dark .datef{
    color: #d7d7d7;
}


.dark .comment textarea , .dark .comment input {
    background: #0e2535;
}


.namecomment {
    float: right;
    font-size: 16px;
    color: var(--color1);
    position: relative;
    padding-right: 0;
}

.datecomment {
    float: left;
    position: relative;
    font-size: 14px;
    color: #919191;
    padding-right: 20px
}

.comment-avatar p {
    display: block;
    width: 100%;
    margin: 20px 0
}

.comment-avatar {
    display: grid
}

.reply {
    text-align: left
}



.reply a {
    color: var(--color1);
    font-weight: bold;
    font-size: 14px
}

ul.children {
    width: 90%;
    margin-right: 10%;
    margin-top: 10px;
}

.commentbox {
    width: 100%
}

.comment-list .commentbox {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px 30px
}

.comment-list>li {
    margin-bottom: 50px
}

ul.children {
}

.comment-list .children li .commentbox {
    background: #f0f0f066;
    border: 1px solid #7bb23f;
}

span.wpcf7-spinner {
    display: none
}

.comment_section {
    margin-bottom: 40px;
    width: 90%;
    margin: 0 auto
}

form#commentform {
    width: 100%;
    display: block
}

.send_for_damin input#submit {
    background: var(--color1);
    color: #fff;
    width: 130px
}

.namecomment i {
    margin-left: 5px;
    font-size: 18px;
    position: relative;
    top: 3px;
}

.datecomment i {
    margin-left: 4px;
    font-size: 17px;
    position: relative;
    top: 3px;
}
.col-lg-9.contentblog h1 {
    color: var(--color2);
    margin-bottom: 10px;
}
.contentblog img {
    border-radius: 10px;
}

ul.children {
    width: 95%;
    margin-right: 5%;
}


.similar-blog h2 {
    margin-bottom: 20px;
    text-align: center;
    font-family: peydawebbold;
}

.comment h3 {
    font-size: 35px;
    font-family: 'PeydaWebbold';
    text-align: center;
    color: var(--color1);
    margin-bottom: 20px;
}

.comment {
    margin-top: 80px;
}
.contactbox1 {
    background-image: url(assets/images/rectangle1.png);
    text-align: right;
    display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 40px 0;
    background-repeat: no-repeat;
    width: 100%;
    padding-right: 80px;
}
.contacttext {
    text-align: right;
}
.contacttext span {
    font-family: peydawebbold;
    font-size: 20px;
    color: var(--color1);
}
.contacttext p {
    font-size: 18px;
     color: var(--color3);
}
.contactbox2 {
    background-image: url(assets/images/rectangle1.png);
    text-align: right;
    display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 40px 0;
    background-repeat: no-repeat;
    width: 100%;
    padding-right: 80px;
}
.contact {
    margin-top: 30px;
    margin-bottom: 30px;
}
.contactbox3 {
    background-image: url(assets/images/rectangle1.png);
    text-align: right;
    display: inline-block;
    text-align: right;
    margin: 20px 0;
    position: relative;
    background-size: 100%;
    padding: 40px 0;
    background-repeat: no-repeat;
    width: 100%;
    padding-right: 80px;
}
.cticon1:before{
    content: '';
    width: 39px;
    height: 41px;
    background-image: url(assets/images/cticon1.svg);
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    right: -50px;
    top: 13px;
}
.cticon2:before{
    content: '';
    width: 36px;
    height: 36px;
    background-image: url(assets/images/cticon2.svg);
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    right: -42px;
    top: 10px;
}
.cticon3:before{
    content: '';
    width: 36px;
    height: 36px;
    background-image: url(assets/images/cticon3.svg);
    position: absolute;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100%;
    right: -49px;
    top: 8px;
}
.cticon1 {
    position: relative;
}
.cticon2 {
    position: relative;
}
.cticon3 {
    position: relative;
}
.sociallink li {
    display: inline-block;
    text-align: left;
    margin-right: 13px;
}
.sociallink {
    text-align: left;
}
.map iframe {
    width: 100%;
    border-radius: 20px;
    height: 500px;
    margin-top: 40px;
}
.sociallink ul li a {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.socialtext p {
    font-size: 18px;
    color: #ffffff;
}
.social-box {
    background-color: var(--color1);
    border-radius: 15px;
    padding: 23px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feeding-right p {
    line-height: 47px;
    font-size: 15px;
    color: var(--color3);

}
.feeding-button {
    text-align: center;
    margin-top: 8px;
    display: flex;
    gap: 20px;
}
.feeding-button a {
   color: #FFFFFF;
   font-size: 16px;
   font-family: peydawebbold;
   background-color: var(--color1);
   padding: 11px 0px;
   border-radius: 56px;
   width: 100%;
   display: block;
   text-align: center;
   border: 1px solid var(--color1);
}
.feeding-left img {
    border-radius: 24px;
    width: 100%;
    margin-top: 2px;
    border: 1px solid #007bff;
}
.feeding2 {
    margin-top: 60px
}
.feeding2 p {
    line-height: 47px;
    font-size: 15px;
    color: var(--color3);
    margin-top: 10px;
}
.feeding-left {
    margin-top: 17px;
}
.feeding2 span {
    color: var(--color1);
}


.diet-right p {
    line-height: 47px;
    font-size: 15px;
    color: var(--color3);

}
.diet-button {
    text-align: center;
    margin-top: 8px;
}
.diet-button a {
   color: #FFFFFF;
   font-size: 16px;
   font-family: peydawebbold;
   background-color: var(--color1);
   padding: 12px 0px;
   border-radius: 56px;
   width: 100%;
   display: block;
   text-align: center;
   border: 1px solid var(--color1);
}
.diet-left img {
    border-radius: 24px;
    width: 100%;
    margin-top: -11px;
}
.diet2 {
    margin-top: 60px
}
.diet2 p {
    line-height: 47px;
    font-size: 15px;
    color: var(--color3);
    margin-top: 10px;
}
.feeding-left {
    margin-top: 17px;
}
.diet2 span {
    color: var(--color1);
    font-family: peydawebbold;
    font-size: 17px;
    margin-top: 10px;
    display: block;
}
.diet-right span {
    font-family: peydawebbold;
    font-size: 15px;
    line-height: 30px;
    color: var(--color1);
}
.feeding-right {
    margin-top: 14px;
}
.weight-text {
    text-align: center;
}
.weight-text p {
    line-height: 39px;
    color: var(--color3);
    font-size: 16px;
}
.arzyabiform {
    /* margin-top: 40px; */
    /* margin-bottom: 65px; */
    position: relative;
    z-index: 1;
}
.arzyabiimg img {
    border-radius: 10px;
    width: 100%;
}
.titlespagebox span {
    line-height: 39px;
    color: var(--color3);
    font-size: 15px;
    margin-top: 10px;
    display: inline-block;
    width: 88%;
}
.resultformbox {
    margin-bottom: 80px;
}
.resultformbox1 {
    text-align: center;
    /* margin-top: 44px; */
}
.resultformbox1 h2 {
    font-size: 19px;
    color: var(--color3);
    line-height: 39px;
}
.resultformbox1 h2 span {
     color: var(--color1);
}
.resultformbox1 p {
    line-height: 39px;
    color: var(--color3);
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}
.resultformbox1 span {
    font-family: peydawebbold;
    color: var(--color1);
    font-size: 18px;
    margin-top: 15px;
    display: inline-block;
    line-height: 39px;
}
.result-button {
    display: inline-block;
    margin-top: 30px;
    width: 80%;
    /* margin: 0 auto; */
}
.result-button .button1 {
     display: inline-block;
     font-size: 16px;
     color: #FFFFFF;
     background-color: var(--color1);
     padding: 10px 27px;
     border-radius: 56px;
     width: 64%;
     /* display: inline; */
     border: 1px solid var(--color1);
}
.result-button .button1 {
    display: inline-block;
}
.result-button .button2 {
     font-size: 16px;
     color: #FFFFFF;
     background-color: var(--color2);
     padding: 10px 20px;
     border-radius: 56px;
     width: 33%;
     border: 1px solid var(--color2);
     display: inline-block;
}
.result-button .button2 {
    display: inline-block;
    margin-right: 10px;
}
.resultformbox1 {
    box-sizing: border-box;
    padding: 25px 42px;
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    position: relative;
    background-color: #FAFFF4;
    border-radius: 30px;
}
.resultformbox1:before{
    content: '';
    position: absolute;
    top: -1px;
    bottom: -2px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to top, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 30px;
    transition: 0.5s;
}
.resultimg-left img {
    margin: 0 auto;
    width: 50%;
}
.arzyabiresult p {
    line-height: 45px;
    font-size: 16px;
    color: var(--color3);
}
.arzyabiresult {
    margin-bottom: 60px;
    text-align: center;
    display: none;
}
.rtlfbx img {
    width: 40px;
    margin: 0 auto;
}
.rtlfbx .rtls {
    font-family: peydawebbold;
    font-size: 14px;
    display: inline-block;
    line-height: 10px;
    margin: 0;
    padding-right: 4px;
    color: var(--color1);
}
.ltrfbx .ltrf {
     font-family: peydawebbold;
     font-size: 17px;
     display: block;
     line-height: 10px;
     margin-top: 11px;
     color: var(--color1);
}
.ltrfbx .ltrb {
     font-family: peydawebbold;
     font-size: 19px;
     display: block;
     color: var(--color2);
     line-height: 20px;
     margin: 0;
}
.foodboxresult {
    display: flex;
    justify-content: space-between;
    border: 1px solid #EEEEEE;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 7px;
}
.ltrfbx {
    /* line-height: 15px; */
}
.rtlfbx {
    display: inline-flex;
    align-items: center;
}

.ltrfbx p {
    font-size: 12px !important;
    line-height: 10px;
}

.foodbox .col-lg-6 {
    padding: 0 6px;
}
.foodbox {
    margin-top: 8px;
    padding: 0 20px;
}
.result-button .button2:hover {
    background: transparent;
    color: var(--color2);
}
.result-button .button1:hover {
    background: transparent;
    color: var(--color1);
}
.resultformbox4 .result4-1 {
    line-height: 39px;
    color: var(--color1);
    font-size: 22px;
    font-family: peydawebbold;
    margin-bottom: 20px;
    display: block;
}

.resultformbox4 p {
    line-height: 29px;
    color: var(--color3);
    font-size: 15px;
    margin-bottom: 13px;
}
.resultformbox4 .result4-2 {
    line-height: 39px;
    color: var(--color2);
    font-size: 19px;
    font-family: peydawebbold;
}

.feeding-button a:hover{
    background-color: transparent !important;
    color: var(--color1);
}
.diet-button a:hover{
    background-color: transparent;
    color: var(--color1);
}

.col-lg-6.arzyabiimg {
    text-align: center;
}

.arzyabiformbox {
    padding: 18px;
    background: linear-gradient(180deg, #FAFFF4 0%, #FAFFF4 100%);
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-sizing: border-box;
    background-clip: padding-box;
    position: relative;
}

.arzyabiformbox h5 {
    font-size: 16px;
    text-align: center;
    background: var(--color1);
    padding: 16px 0;
    color: #fff;
    border-radius: 39px;
    margin-bottom: 0px;
}
.arzyabiformbox input , .arzyabiformbox select {
    width: 100%;
    font-family: 'PeydaWeb';
    padding: 12px 12px !important;
    border: 1px solid #DDEBCD;
    box-shadow: none;
    outline: none;
    border-radius: 49px;
    font-size: 16px;
}

.arzyabiformbox label {
    margin-bottom: 3px;
    font-family: 'PeydaWebbold';
    color: var(--color1);
    margin-top: 11px;
    font-size: 18px;
    display: block;
    line-height: 14px;
}
.arzyabiformbox .col-sm-8 {
    padding-left: 0;
}

.arzyabiformbox select {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18'><path d='M7 9l5 5 5-5' fill='none' stroke='%2362B640' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:left 12px center; /* Ø±Ø§Ø³Øªâ€ŒÚ†ÛŒÙ†ØŒ ÙÙ„Ø´ Ø³Ù…Øª Ú†Ù¾ */
  background-size:18px;
  color: #8F8F8F;
  padding: 12px 12px !important;
  height: 50px;
  background-color: #fff !important;
}

.arzyabiformbox button , .arzyabiresult button {
    background: var(--color1);
    border: none;
    padding: 13px 60px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 50px;
    font-family: 'PeydaWebBold';
    font-size: 16px;
    color: #fff;
    border: 1px solid;
    transition: 0.5s;
    cursor: pointer;
}
.col-sm-6.sn {
    padding-left: 0;
}

.arzyabiformbox:before {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom, #ffffff 40%, var(--color1));
    z-index: -1;
    border-radius: 20px;
    transition: 0.5s;
}

.arzyabiformbox button:hover {
    background: var(--color2);
}

/* overlay + spinner */
#idealBox{position: relative;}
#idealBox.is-calculating { /* Ø§Ú¯Ø± Ø®ÙˆØ§Ø³ØªÛŒ Ù‡Ù†Ú¯Ø§Ù… Ù…Ø­Ø§Ø³Ø¨Ù‡ Ø§ÙÚ©Øª Ø¨Ø¯ÛŒ */ }

#idealBox .calc-overlay{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.75); backdrop-filter: blur(1px);
  border-radius:14px; z-index:5;
}
#idealBox .spinner{
  width:42px; height:42px; border-radius:50%;
  border:3px solid #62B64022; border-top-color:#62B640;
  animation:spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ÙˆÙ‚ØªÛŒ Ù†ØªÛŒØ¬Ù‡ Ø¢Ù…Ø¯ */
#idealBox.has-result .ideal-result{ animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0; transform:translateY(4px)} to{opacity:1; transform:none} }

.has-result:before {
    background: linear-gradient(to top, #ffffff 20%, var(--color1)) !important;
}

/* Ú©Ø§Ø±Øª Ù†ØªÛŒØ¬Ù‡ Ø´Ø¨ÛŒÙ‡ Ø·Ø±Ø­ */
#idealBox .ideal-card{
        /* Ø³Ø¨Ø² Ø±ÙˆØ´Ù† Ø¯ÙˆØ± Ú©Ø§Ø±Øª */
}

/* Ø®Ø·ÙˆØ· Ù†ØªÛŒØ¬Ù‡ */
#idealBox .res-line{
  font-size: 20px;
  margin-bottom: 20px;
}
#idealBox .res-line strong{ font-weight:700; }
#idealBox .res-value{
  color: var(--color1);                 /* Ø³Ø¨Ø² ØªÛŒØ±Ù‡ Ø¹Ø¯Ø¯Ù‡Ø§ */
  font-weight:800;
  margin:0 4px;
}
#idealBox .res-unit{
  color: var(--color1);
  font-weight:700;
}

/* ØªÛŒØªØ± CTA Ø³Ø¨Ø² */
#idealBox .res-cta{
  color: var(--color1);
  font-weight:800;
  font-size: 23px;
  width: 90%;
  margin: 0 auto;
}

/* Ø¯Ú©Ù…Ù‡â€ŒÙ‡Ø§ Ø¨ÛŒØ¶ÛŒ */
#idealBox .res-actions{ gap:16px; }

.btn-pill{
  border-radius:999px;
  padding:12px 26px;
  font-weight:700;
}


/* Ø§Ø³Ù¾ÛŒÙ†Ø± Ùˆ Ø§ÙˆÙˆØ±Ù„ÛŒ Ù…Ø­Ø§Ø³Ø¨Ù‡ Ù†Ù…Ø§Ø¯ÛŒÙ† */
#idealBox{position:relative;}
#idealBox .calc-overlay{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(1px);
  border-radius:14px;
  z-index:5;
}
#idealBox .spinner{
  width:42px; height:42px; border-radius:50%;
  border:3px solid rgba(98,182,64,.13);
  border-top-color:#62B640;
  animation:spin .9s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* Ø§ÙÚ©Øª ÙˆØ±ÙˆØ¯ Ù†ØªÛŒØ¬Ù‡ */
#idealBox.has-result .ideal-result{ animation:fadeIn .2s ease; }
@keyframes fadeIn{
  from{ opacity:0; transform:translateY(4px); }
  to{ opacity:1; transform:none; }
}

.has-result {padding: 40px 15px 30px 15px;background: #ffffff;box-shadow: none;min-height: 530px;text-align: center;color: #646566;}

p.text-pfd1 {
    font-size: 15px;
    line-height: 35px;
    margin: 30px 0;
}

.res-actions a {
    background: var(--color2);
    border: none;
    padding: 13px 70px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 10px;
    font-family: 'PeydaWebBold';
    font-size: 16px;
    color: #fff;
    border: 1px solid;
    transition: 0.5s;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 50px;
}

.res-actions  button {
    background: var(--color1);
    padding: 13px 25px;
    border-radius: 50px;
}
.res-actions a:hover {
    background: transparent;
    color: var(--color2);
}

.res-actions button:hover {
    background: transparent !important;
    color: var(--color1);
}

.arzyabiimg img{
  display:block; width:100%; border-radius:24px;
  transition:opacity .25s ease;
}
.arzyabiimg img.is-fading{ opacity:.15; }

.arzyabiform3 .arzyabiformbox h5 , .arzyabiform3 .arzyabiformbox button {background: var(--color2);}

.arzyabiform3 label {
    color: var(--color2);
}

.arzyabiform3 .arzyabiformbox:before {
    background: linear-gradient(to bottom, #ffffff 40%, var(--color2));
}

.arzyabiform3 .has-result:before {
}
h3.text-pfd1 {
    font-size: 28px;
    font-family: 'PeydaWebbold';
    color: var(--color1);
    line-height: 50px;
}

.arzyabiform3 p.result-line {
    font-size: 16px !important;
    color: #646566;
    line-height: 39px;
}
h3.text-pfd1 span {
    display: block;
    font-size: 16px;
    margin: 10px 0;
}
.has-result .arzyabiresult {
    display: block;
}
.arzyabiformbox label span {
    font-family: 'PeydaWeb';
    font-size: 15px;
}
.apppage {
    margin-top: 0;
}

.stbox1 {
    margin-top: 0;
}
h5.bmi-value.text-center {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--color1);
    color: var(--color1);
}

p.result-line span {
    margin: 0 6px;
}
span.year p {display: inline-block;font-size: 13px;margin-right: 6px;font-family: arial;}


.socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.socials .si a {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
  outline: none;
}

.socials .si a svg path {
    fill: #777777;
    transition: 0.5s;
}


.socials .si a:hover svg path {
    fill: var(--color1);
}
.owl-blog .blog-box {
    width: 91%;
}
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 30px 0;
}

.pagination-wrap a,
.pagination-wrap span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.pagination-wrap a:hover {
  background: var(--color1);
  color: #fff;
  border-color: var(--color1);
}

.pagination-wrap .current {
  background: var(--color1);
  color: #fff !important;
  border-color: var(--color1);
  font-weight: bold;
}


/* متن قبلی/بعدی رو مخفی کن */
.pagination-wrap .prev, 
.pagination-wrap .next {
  font-size: 0;
}

a.next.page-numbers:hover:before, a.prev.page-numbers:hover:before {
    border-color: #fff;
}
.pagination-wrap a:hover:before {
    filter: brightness(0) invert(1);
}

.single-blog-img img {
    height: auto;
    border-radius: 15px;
}
.single-post header {
    background: #fafff4;
    margin-bottom: 30px;
}
.ideal-card img {
    margin: 0px 0;
}
.page-template-arzyabi3-php .res-actions button {
    background: var(--color1);
}
div#ez-toc-container {margin: 20px 0 !important;display: block;border-radius: 10px;background: #fafff4;padding: 15px;}

.ez-toc-title-container {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    padding: 0;
}

span.ez-toc-js-icon-con {
    left: 0 !important;
}

a.ez-toc-pull-right.ez-toc-btn.ez-toc-btn-xs.ez-toc-btn-default.ez-toc-toggle.ez-toc-loaded {
    margin: 0;
}

p.ez-toc-title {
    font-family: 'PeydaWebbold';
    color: var(--color1);
}

span.ez-toc-icon-toggle-span svg {
    fill: var(--color1) !important;
    color: var(--color1) !important;
}

span.ez-toc-js-icon-con {
    border-color: var(--color1) !important;
}

p.ez-toc-title {
    line-height: 34px !important;
}

#ez-toc-container nav > ul {
    margin-top: 20px !important;
}

#ez-toc-container nav  ul li {
    padding: 5px 0 !important;
}

#ez-toc-container nav > ul li a {
    transition: 0.5s;
}

#ez-toc-container a:hover {
    text-decoration: none !important;
    color: var(--color1);
}

#ez-toc-container a:visited {
    color: unset;
}
.single-text h2 , .single-text h3 , .single-text h4 , .single-text h5 , .single-text h6 {
    color: var(--color1) !important;
    font-family: 'PeydaWebbold';
    margin-top: 30px;
    margin-bottom: 10px;
}
.socials .si a svg {
    height: auto;
}



  .support-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }
  .support-btn {
    background: var(--color1);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 0;
  }
  .support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,.3);
  }
  .support-box {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 330px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s ease;
    text-align: center;
    border-top: 3px solid var(--color1);
  }
  .support-box.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .support-box p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  .support-action {
    display: inline-block;
    background: var(--color1);
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 38px;
    font-size: 14px;
    color: #fff;
    transition: background 0.3s ease;
    border: 1px solid var(--color1);
  }

.support-widget svg {
    width: 35px;
    height: auto;
}

.support-widget svg path {
    fill: #fff;
}

.support-action:hover {
    background: transparent;
    color: var(--color1);
}

.cta1-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    background: #fafff4;
    padding: 20px 20px 40px 20px;
    border-radius: 20px;
    border: 1px solid var(--color1);
    margin: 50px 0;
    align-items: flex-start;
}

.cta1-content {
    flex: 1;
    text-align: right;
    text-align: center;
    padding-top: 30px;
    width: 55%;
}

.cta1-logo img {
    width: 120px;
    margin-bottom: 12px;
}

h6.cta1-title {
    font-size: 19px;
    font-family: 'PeydaWebbold';
    margin-top: 20px;
    margin-bottom: 30px;
    color: #0073aa;
}

.cta1-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
    text-align: center;
}

.cta1-desc p {
    padding: 0;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.cta1-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.cta1-btn {
    padding: 10px 28px;
    border-radius: 38px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--color2);
}

.cta1-btn.primary {
    background: var(--color2);
    color: #fff;
}

.cta1-btn.primary:hover {
    background: transparent;
    color: var(--color2);
}

.cta1-btn.secondary {
    background: var(--color1);
    color: #fff;
    border-color: var(--color1);
}

.cta1-btn.secondary:hover {
    background: transparent;
    color: var(--color1);
}

.cta1-image {
    width: 45%;
}

.cta1-image img {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .cta1-wrapper {
    flex-direction: column;
    }
    .cta1-content {
        text-align: center;
        width: 100%;
    }
    .cta1-image img {
        max-width: 100%;
    }
    .cta1-buttons {
        justify-content: center;
    }
    .cta1-image {
    width: 100%;
}


}

.cta2-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    background: #01b0f10d;
    padding: 20px 20px 40px 20px;
    border-radius: 20px;
    border: 1px solid #007bff;
    margin: 50px 0;
    align-items: flex-start;
}

.cta2-content {
    flex: 1;
    text-align: right;
    text-align: center;
    padding-top: 30px;
    width: 55%;
}

.cta2-logo img {
    width: 120px;
    margin-bottom: 12px;
}

h6.cta2-title {
    font-size: 19px;
    font-family: 'PeydaWebbold';
    margin-top: 20px;
    margin-bottom: 30px;
    color: #01b0f1 !important;
}

.cta2-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
    text-align: center;
}

.cta2-desc p {
    padding: 0;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.cta2-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.cta2-btn {
    padding: 10px 28px;
    border-radius: 38px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--color2);
}

.cta2-btn.primary {
    background: var(--color2);
    color: #fff;
}

.cta2-btn.primary:hover {
    background: transparent;
    color: var(--color2);
}

.cta2-btn.secondary {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.cta2-btn.secondary:hover {
    background: transparent;
    color: #007bff;
}

.cta2-image {
    width: 45%;
}

.cta2-image img {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .cta2-wrapper {
    flex-direction: column;
    }
    .cta2-content {
        text-align: center;
        width: 100%;
    }
    .cta2-image img {
        max-width: 100%;
    }
    .cta2-buttons {
        justify-content: center;
    }
    .cta2-image {
    width: 100%;
}
.cta1-desc p , .cta2-desc p  {
    width: 100%;
}
}

.feeding.apppage .feeding-button a.selfn {
    background: var(--color2);
    border-color: var(--color2);
}

.feeding-button a.selfn:hover {
    color: var(--color2) !important;
}

.diet.apppage .feeding-left img {
    border-color: var(--color1);
}
.feeding.apppage .feeding-button  a {background: #00b0f1;border-color: #00b0f1;}

.feeding.apppage .feeding-button a:hover {
    color: #00b0f1;
}
.page-template-vb1 h1 {
    color: #00b0f1;
}