@font-face {
    font-family: mrt_tv_bold;
    src: url(../fonts/TV_Bold_MRT.ttf);

}
@font-face {
    font-family: iransans;
    src: url(../fonts/Iranian_Sans.ttf);

}

@font-face {

    font-family: mrt_tv_medium;
    src: url(../fonts/TV_Medium_MRT.ttf);

}

@font-face {
    font-family: mrt_tv_light;
    src: url(../fonts/TV_Light_MRT.ttf);
}

@font-face {
    font-family: baran;
    src: url(../fonts/B_Baran.ttf);
}


:root {
    --primary-color: #ffb202;
    --secondary-color: #101010;
}

html {
    scroll-behavior: smooth;
  }


/* Reset some default browser styles */
body {
    background-color: #f2f2f2;
    background-blend-mode: screen;
    color: #101010;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Arial, sans-serif;
    direction: rtl;
    font-family: 'baran';
}


/* Spinner Styles  */

.spinner-loader-div{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.spinner-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #101010; 
    border-top: 5px solid #ffb202; /* Spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }




body,
h1,
p,
a {
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5, h6{
    font-family: mrt_tv_bold;
    color: #101010;
}

.p {
    margin-bottom: 10px;
}



a {
    font-family: 'baran';
}


.space-div {
    width: 100%;
    height: 10px;
    background: #101010;
}

.warning-text {
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 30px 10px;
    padding: 10px;
    font-size: 25px;
    color: #ee7b1e;
}

.rounded-15{
    border-radius: 15px;
}


.min-h-50vh{
    min-height: 50vh;
}


.spinner-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light gray background */
    border-top: 5px solid #ffb202; /* Spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }


/* Header Styls */
.header-brand {
    padding-top: 20px;
    background-color: #f2f2f2;

}

.head-logo {
    width: 120px;
    margin: 10px auto 0 auto;
    transition: all 0.5s;
}

.head-logo:hover {
    transform: scale(1.05);
}

.head-name {
    text-align: center;
    font-family: mrt_tv_bold;
    font-size: 30px;
    color: var(--secondary-color);
}




/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 1px solid var(--primary-color);
}

.back-to-top i {
    font-size: 28px;
    color: var(--primary-color);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.back-to-top:hover i{
    color: var(--secondary-color);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0 0 20px 0;
    width: 100%;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    
}


.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 120px;
    border-radius: 7px;
    font-size: 18px ;
    font-weight: 510;
    white-space: nowrap;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    font-family: mrt_tv;
    padding: 0 8px;
}

.navbar a i{
    font-size: 16px !important;
}
.navbar a .bi::before{
    line-height: 1 !important;
}



.navbar a:focus {
    color: var(--secondary-color);
    background: var(--primary-color);    
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--secondary-color);
    background: var(--primary-color);

}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #433f39;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--secondary-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    z-index: 999 !important;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }


}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(39, 37, 34, 0.9);
    transition: 0.3s;
    z-index: 999;

}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: var(--primary-color);
    overflow-y: auto;
    transition: 0.3s;
    padding: 10px !important;

}

.navbar-mobile a,
.navbar-mobile a:focus {
    color: var(--secondary-color);
    border: 0;
    border-bottom: 1px solid var(--secondary-color);
    margin: 0;
    border-radius: 0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--secondary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}



/* slider styles */


.slider-section {
    position: relative;
    max-width: 100%;
    height: 400px;
    /* Adjust as needed */
    overflow: hidden;
    border-radius: 50px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 100%;
}

.slider-item.active-slide {
    opacity: 1;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls div {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 30px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
}

.slider-controls .prev {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-left: 8px;
}

.slider-controls .next {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-right: 8px;

}

.slider-controls div:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: var(--primary-color);
}



/* Responsive Design */
@media (max-width: 768px) {
    .slider-section {
        height: 280px;
    }

    .caption {
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }

    .slider-controls button {
        font-size: 1.2rem;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .slider-section {
        height: 220px;
    }

    .caption {
        font-size: 1rem;
        bottom: 10px;
        left: 10px;
    }

    .slider-controls button {
        font-size: 1rem;
        padding: 6px;
    }

    .slider-dots .dot {
        height: 12px;
        width: 12px;
    }
}

@media (max-width: 490px) {
    .slider-section {
        height: 180px;
        border-radius: 30px;
    }

}

@media (max-width: 400px) {
    .slider-section {
        height: 160px;
    }

}

@media (max-width: 360px) {
    .slider-section {
        height: 140px;
    }

}



/* Under Development Screen */
.under-development {

    background-color: #f2f2f2;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    animation-delay: 2s;
    border-bottom: 10px solid #e89a02;
    padding: 20px 0;
}

.under-development h4 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: 'mrt_tv_bold';

}

.under-development p {
    font-size: 18px;
    font-family: 'baran';

}



/* CEO Message Section */

.ceo-message-section {
    background-color: #f2f2f2;
    padding: 20px 0;
    color: var(--secondary-color);
}

/* Container styling */
.ceo-image {
    position: relative;
    width: 100%;
    min-height: 250px;
}

/* Image Placeholder with Moving Gradient */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #888888 0%, #f2f2f2 100%);
    background-size: 200% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: gradientMove 2s linear infinite;
    border-radius: 10px;
    z-index: 1;
}

/* Gradient Moving Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}




/* Image */
.ceo-image-real {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 5px solid var(--secondary-color) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* When image is loaded */
.ceo-image-loaded .image-placeholder {
    display: none;
}

.ceo-image-loaded .ceo-image-real {
    opacity: 1;
}




.animate-forwards {
    animation: fadeIn 2s ease-in forwards;
}

.animate-backwards {

    animation: fadeOut 2s ease-in backwards;
}

.ceo-message-content,
.ceo-image {
    width: 100%;
    padding: 40px;
}

.ceo-message-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f2f2f2;
    text-align: justify;
    color: var(--secondary-color);

}

.ceo-message-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffb202;
    display: inline-block;
    padding-bottom: 5px;
    font-family: 'mrt_tv_bold';
    color: #ffb202;
}

.ceo-message-content p {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'baran';
    color: var(--secondary-color);
}





.ceo-message-content p span {
    font-family: 'mrt_tv_bold' !important;
    color: var(--secondary-color) !important;

}

.ceo-message-footer {
    text-align: center;
}

.ceo-message-content .ceo-message-footer .ceo-name p {
    font-family: 'mrt_tv_bold' !important;
    color: #ffb202 !important;

}


.primary-button {
    background-color: #a38549;
    color: #f2f2f2;
    padding: 12px 24px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.active-button {
    background-color: var(--primary-color);
    color: #f2f2f2;
    padding: 12px 24px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


.cta-button {
    background-color: #ffb202;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e89a02;
}

.ceo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;

}

.ceo-image img {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    max-width: 100%;
    border: 5px solid #ffb202;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ceo-image img:hover {
    transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-out animation */
@keyframes fadeOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* External Reprot Styles */

.report-external {
    color: #e89a02;
}

/* Posts Styles  */


.post-show-div h4{
    font-size: 25px;
    margin-bottom: 20px;
}

.post-show-div h5{
    font-size: 22px;
    margin-bottom: 15px;
}
.post-show-div p{
    font-size: 20px;
}





/* Always 100 page Styles */


.always-100-header {
    padding: 50px 10px;
    background-color: #f2f2f2;
    color: var(--secondary-color);
}

.a100-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a100-img .img {
    width: 98%;
    border: 4px solid var(--secondary-color);
    /* Border around image */
    padding: 5px;
    border-radius: 8px;
    overflow: hidden;
    /* To ensure rounded corners are visible */
    margin: 0 auto;
}

.a100-img .img-small {
    max-width: 300px;
    width: 95%;
    border: 4px solid #ffb202;
    /* Border around image */
    padding: 5px;
    border-radius: 8px;
    overflow: hidden;
    /* To ensure rounded corners are visible */
    margin: 10px auto;
}

.a100-body {
    max-width: 600px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}

.a100-body-free {
    max-width: 1000px;
    padding: 30px 20px;
    background-color: #202020;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}

.a-100-title {
    color: #ffb202;
    margin-bottom: 1rem;
    font-family: mrt_tv_bold;
    font-size: 30px;
    text-align: center;
}

.a-100-title-md {
    color: #b4964f;
    margin-bottom: 1rem;
    font-family: mrt_tv_bold;
    font-size: 25px;
    text-align: center;
}

.a100-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary-color);
    /* Slightly lighter shade for paragraphs */
    margin-bottom: 1rem;
    font-family: baran;

}

.a100-text p:last-of-type {
    margin-bottom: 0;
}

/* Responsive image styling */
.a100-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.a100-text p span {
    color: #b4964f;
    font-family: mrt_tv_bold;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    .a-100-title {
        font-size: 25px;
        /* Adjust title size for mobile */
    }

    .a100-text p {
        font-size: 18px;
        /* Adjust paragraph size for mobile */
        text-align: justify;
    }
}


.card-100-f {
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    color: #000 !important;
    font-family: mrt_tv_bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s;
}

.card-100-f h1,
.card-100-f h2,
.card-100-f h3,
.card-100-f h4,
.card-100-f h5,
.card-100-f h6{
    color: #000 !important;
}

.card-100-f:hover {
    background-color: #ffb202;
    transform: scale(1.01);
    color: #000 !important;
}




.know-more-div {
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    color: #000;
    font-family: mrt_tv_bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s;
    min-width: 200px;
    margin: 10px auto;
}

.know-more-div:hover {
    background-color: #ffb202;
    transform: scale(1.01);
}

.whatsapp-div {
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    color: #000;
    font-family: mrt_tv_bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s;
    min-width: 200px;
    margin: 10px auto;
}

.whatsapp-div:hover {
    background-color: #ffb202;
    transform: scale(1.01);
}


/* Services Section Styles */
.home-services-section {
    padding: 50px 0;
    background-color: #f2f2f2;
}

.service-card {
    background-color: #f2f2f2;
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    border: 2px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.service-icon img {
    width: 100%
}

.service-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffb202;
    font-family: mrt_tv_bold;
}

.service-description {
    font-size: 18px;
    color: var(--secondary-color);
}




.templates-section {
    padding: 50px 0;
}

.template-card {
    width: 100%;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    margin: 10px auto;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;

}

.template-card:hover {
    transform: scale(1.05);
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.template-card-img {
    width: 100%;
    position: relative;
    min-height: 170px;
}

@media screen and (max-width: 1400px) {
    .template-card-img {
        min-height: 150px;
    }
}

@media screen and (max-width: 1200px) {
    .template-card-img {
        min-height: 170px;
    }
}

@media screen and (max-width: 992px) {
    .template-card-img {
        min-height: 120px;
    }
}



.template-card-img img {
    width: 100%;
}

.template-card-title {
    width: 100%;
    height: 60px;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-card-title h4 {
    font-size: 20px;
    font-family: mrt_tv_bold;
    color: var(--primary-color);
}






/* Academy Page Styles  */

.academy-page-selectors{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}





/* Footer Styls  */
footer {
    position: relative;
    background: #f2f2f2;
    min-height: 300px;
    padding: 50px 0;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 85% 35%, #ffb202 0.1px, transparent 1px),
        radial-gradient(circle at 45% 75%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 70% 15%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 25% 65%, #ffb202 0.1px, transparent 1px),
        radial-gradient(circle at 90% 85%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 14% 53%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 15% 55%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 10% 50%, #ffb202 0.8px, transparent 1px),
        radial-gradient(circle at 60% 40%, #ffb202 0.2px, transparent 1px),
        radial-gradient(circle at 65% 45%, #ffb202 0.8px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
}
.footer-social-media {
    margin: 20px auto;
    border-radius: 20px;
    max-width: 1000px;
    background: #fff;
    background-size: 200% 100%;
    position: relative;
    padding: 20px 10px;
    box-shadow: 0 4px 8px #838383;
    animation: gradientMove 3s linear infinite;


}

.fsm-title {
    font-family: mrt_tv_bold;
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 20px;
}

.fsm-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px auto;
}

.fsm-icon {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background: linear-gradient(to left, #ffb202, #b4964f90);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}


.fsm-icon svg {
    fill: #101010;
    transition: all 0.5s;

}

.fsm-icon:hover {
    background: linear-gradient(to left, #ffb202, #ffb202);
    transform: scale(1.1);

}

.fsm-icon:hover svg {
    fill: #202020;

}

.footer-phone-number {
    display: flex;
    gap: 4px;
    /* Adjust gap as needed for spacing between digits */
}

.fsm-pn-digit {
    font-size: 24px;
    /* Adjust font size as needed */
    animation: wave 4s ease-in-out infinite;
    display: inline-block;
}

.footer-phone-number {
    display: flex;
    gap: 4px;
    /* Adjust gap as needed for spacing between digits */
    direction: ltr;
    justify-content: center;
    align-items: center;

}

.fsm-pn-digit {
    font-size: 35px;
    /* Adjust font size as needed */
    animation: wave 4s ease-in-out infinite;
    /* 1s wave + 3s delay */
    display: inline-block;
    color: #ffb202;
    font-family: mrt_tv_bold;
}

/* Wave animation with 3 seconds of delay */
@keyframes wave {

    0%,
    25%,
    100% {
        transform: translateY(0);
    }

    12.5% {
        transform: translateY(-10px);
        /* Adjust for wave height */
    }
}

/* Staggered delay for each digit to create the wave effect */
.footer-phone-number .fsm-pn-digit:nth-child(1) {
    animation-delay: 0s;
}

.footer-phone-number .fsm-pn-digit:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-phone-number .fsm-pn-digit:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-phone-number .fsm-pn-digit:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-phone-number .fsm-pn-digit:nth-child(5) {
    animation-delay: 0.4s;
}

.footer-phone-number .fsm-pn-digit:nth-child(6) {
    animation-delay: 0.5s;
}

.footer-phone-number .fsm-pn-digit:nth-child(7) {
    animation-delay: 0.6s;
}

.footer-phone-number .fsm-pn-digit:nth-child(8) {
    animation-delay: 0.7s;
}

.footer-phone-number .fsm-pn-digit:nth-child(9) {
    animation-delay: 0.8s;
}

.footer-phone-number .fsm-pn-digit:nth-child(10) {
    animation-delay: 0.9s;
}

.footer-phone-number .fsm-pn-digit:nth-child(11) {
    animation-delay: 1s;
}

.footer-phone-number .fsm-pn-digit:nth-child(12) {
    animation-delay: 1.1s;
}



/* messages styles */

.alert {
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* برای تنظیمات آیکون کنار متن (اختیاری) */
.alert-danger::before {
    content: "⚠️"; /* می‌توانید یک آیکون دیگر انتخاب کنید */
    font-size: 20px;
    margin-right: 10px;
}


.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* آیکون کنار متن (اختیاری) */
.alert-success::before {
    content: "✔️"; /* آیکون تیک یا هر نماد موفقیت دیگر */
    font-size: 20px;
    margin-right: 10px;
}