@font-face {
  font-family: 'shabnam';
  font-style: normal;
  font-weight: normal;
  src: url('fonts/shabnam-fa-num/Shabnam-Light-FD.eot');
  src: url('fonts/shabnam-fa-num/Shabnam-Light-FD.eot?#iefix') format('embedded-opentype'), 
 /* IE6-8 */
  url('fonts/shabnam-fa-num/Shabnam-Light-FD.woff2') format('woff2'), 
 /* FF39+,Chrome36+, Opera24+*/
  url('fonts/shabnam-fa-num/Shabnam-Light-FD.woff') format('woff'), 
 /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
  url('fonts/shabnam-fa-num/Shabnam-Light-FD.ttf') format('truetype');
}
/*----------> fonts end <----------*/

:root {
  --default-font: 'shabnam';
  --heading-font: 'shabnam';
  --nav-font: 'shabnam';
  --font-family: 'shabnam';
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #d8eeff; /* Background color for the entire website, including individual sections */
  --default-color: #182b49; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #03b8ef; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --transition: all 0.3s linear;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #00bbf0; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.products-img img {
  border-radius: 2rem 3rem 2rem 3rem;
  box-shadow: rgba(0, 0, 0, 0.104) 0px 3px 2px, rgba(0, 0, 0, 0.603) 0px 3px 6px;
}

.dark-background {
  background-image: url("img/arvandsmart.jpg");
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .dark-background {
    background-image: url("img/mobile.jpg");
  }

}
.btn-submit {
  background-image: linear-gradient(to left, #57b3d2 0%, #162e58 61%, #57b3d2 100%);
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 0 5rem 0 5rem;
}

.btn-submit:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'shabnam';
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: 'shabnam';
}

.header {
 /* --background-color:  #07204ed9;   /*******************  برای اینکه بدون اسکرول رنگ داشته باشه ***********/
  --heading-color: #ffffff;
  color: var(--default-color);
 background-color: #071e49a7;
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
  border-radius: 0 0 4rem 4rem;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right:8px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  font-weight: 700;
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
 /* --background-color: rgba(42, 44, 57, 0.9);*/
 --background-color: #07164ecd;
}

.info-text p {
  line-height: 2rem;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
    direction: rtl;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: 'shabnam';
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
  
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    direction: rtl;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {    /*****************  منوی باز شونده موبایلی *****************/
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
   /* background-color: var(--nav-mobile-background-color);*/
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    background-color: #d6f5ff;
    height: 300px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: 'shabnam';
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #162699;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
    direction: rtl;
    
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-hover-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  border: 4px outset var(--nav-hover-color);
  box-shadow: rgba(0, 0, 0, 0.104) 0px 3px 2px, rgba(0, 0, 0, 0.603) 0px 3px 6px;
  border-radius: 3rem 0 3rem 0;
  }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

#hero-carousel {
  margin-top: 6rem;
}

.hero h2 {
 margin-top: 5rem;
  margin-bottom: 0px;
  padding: 5px 15px;

}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next {
  left: 100%;
}

.hero .carousel-control-prev {
  right: 100%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0px;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #04034d;
  background-color: var(--nav-hover-color);
}

.hero .btn-get-started:hover {
  background: #0f2574;
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }

  .hero .carousel-control-next {
     left: 100%;
  }
  
  .hero .carousel-control-prev {
   right: 100%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero .carousel-control-next {
    left: 100%;
 }
 
 .hero .carousel-control-prev {
  right: 100%;
 }
}

@media (min-width: 576px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero .carousel-control-next {
    left: 100%;
 }
 
 .hero .carousel-control-prev {
  right: 100%;
 }
}


.img-fluid {
  max-width: 100%;
  height: auto;
}



/************************galaxy line*********************/

.galaxy-line img {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70px;
  background-attachment: fixed;
  overflow: auto;
}

 /********************* insta ***********************/


.insta {
 /* background-color: darkorchid;*/
  background-image: url("img/banner.jpg");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 150px;
  background-attachment: fixed;
 overflow: hidden;

}

.insta p {
  color: #fff;
background-color: #07204ebf;
  font-weight: bold;
  border-radius: 5rem 2rem 5rem 2rem;
  direction: rtl;
}


/******************* page number *********************/
.page-navigation ul {
	text-align: center;
	border-top: 1px solid #eee;
	padding: 30px  0px 0px 0px;
	margin: 0px 0px 80px 0px;
}
.page-navigation ul li {
	display: inline-block;
}
.page-navigation ul li a {
	width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 38px;
	border: 1px solid #d3a1fe;
	border-radius: 5px;
	font-weight: 700;
	color: #1e1e1e;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.5s;
}
.page-navigation ul li a:hover,
.page-navigation ul li.current-page a {
	background-color: var(--nav-hover-color);
	border-color: #410c70;
	color: #fff;
}

/************** emkanat *****************/
.emkanat p {
  position: absolute;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-top: 5rem;
  background-color: #00aced;

}

/**************** contact **************/


/******************* slider *****************/
/**** slider *******/
.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
  direction: rtl;
}

.notice-head p {
  font-size: 1rem;
} 

.notice-head h2 {
  background-color: #07204e52;
}

.card-list .card-item .user-image {
  max-width: 250px;
  margin-bottom: 10px;
  border: 1px solid #3a2810; 
  border-radius: 2rem;
}

@media (max-width: 1050px) {
  .card-list .card-item .user-image {
      max-width: 250px;
  }
}

.card-list .card-item {
  color: #fff;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("img/9.jpg");
background-size: cover;
background-position: center;
  background-color: #06092de3;
  min-height: 500px;

  font-size: 1.2rem;
  padding: 10px 25px;
  border-radius: 1rem 3rem 1rem 3rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s ease;
 }

 .card-item , .card , .pic{
  box-shadow: rgba(0, 0, 0, 0.368) 0px 3px 6px, rgba(0, 0, 0, 0.407) 0px 3px 6px;
}

.card-list .card-item {
  margin: 14px 0 20px;
}


/* دایره های زیر باکس */
.slider-wrapper .swiper-pagination-bullet {
  background: #3a2810;
  height: 15px;
  width: 15px;
}

/* ایک.ن های next , pre */
.slider-wrapper .swiper-slide-button {
  color: #3a2810;
  font-weight: bold;
  margin-top: -50px;
  transition: 0.2s ease;
}

.swiper-slide-button:hover {
  color: var(--nav-hover-color);
}


@media (max-width: 768px) {
  .slider-wrapper {
      margin: 0 10px 40px;
     /* margin-top: 3rem;*/
  }
  .slider-wrapper .swiper-slide-button {
      /*display: none;*/
      color: #fff;
      margin: -2rem 1rem;
  }

  .user-image {
    max-width: 300px;
}
}

/******** form *********/
.form-label {
  background-color: var(--accent-color);
}
/********************* footer *****************/
/********************** footer *************************/
/* ================================
Bottom widget
================================= */
#bottom-widget {
  overflow: hidden;
  padding: 15px;
}

.social-network {
  gap: 10px;
}
.socialicon {
  width: 50px;
}
/* ================================
Footer
================================= */
footer {
	color: #fff;
	padding: 30px 0px;
  background-color: #00bbf0;
  border-radius: 5rem 5rem 0 0;
}

.p-footer {
  font-size: 22px;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}


  .credits  {
	  font-size: 20px;
  }

  .contact-widget {
    margin: 2rem 0;
  }

  .contact-widget .fa{
    color: #00bbf0;
    margin: 1rem 0;
  }

  .contact-widget h5{
    color: #000;
    font-weight: bold;
  }

  .contact-widget p{
    color: #000;
  }

 .img-footer {
    width: 100px;
  }


  @media screen and (max-width: 768px) {
    footer {
      border-radius: 4rem 4rem 0 0;
    }

    .p-footer {
      font-size: 18px;
    }
  
  }
