/* copyright 2026 kouhyarbahman.com */
/*=============== VARIABLES CSS ===============*/
body.light {
  /*========== Colors ==========*/
  --background-head: rgb(92, 46, 145, 0.9);
  --background-primary: #fff;
  --background-secondary: #5c2e91;
  --background-tertiary: rgb(247, 247, 247);
  --background-tertiary2: rgb(240, 240, 240);
  --background-main-page: rgb(154, 230, 152);

  --bg-op-ban: rgb(92, 46, 145, 0.9);
  --bg-banafsh: #5c2e91;
  --bg-sabz: #10b981;
  --bg-zard: #f59e0b;
  --bg-sefid: #fff;
  --bg-khak: #f0f8ff;
  --bg-khak2: #DCEBF9;
  --bg-ghermez: hsl(0, 77%, 38%);
  --bg-abi: #009fff;

  --action-primary: #10b981;
  --action-primary-hover: #f59e0b;
  --action-secondary-hover: rgb(66, 68, 86);
  --action-tertiary: rgb(142, 212, 255);
  --action-tertiary-hover: hsl(0, 77%, 38%);

  --foreground-primary: hsl(0, 0%, 17%);
  --foreground-secondary: hsl(0, 0%, 0%);
  --foreground-tertiary: hsl(0, 0%, 94%);
  --foreground-tertiary1: rgb(255, 255, 255);

  --white: hsl(0, 0%, 100%);
  --white-hover: rgba(255, 255, 255, 0.7);
  --black: #000000;
  --black-hover: rgba(0, 0, 0, 0.7);
  --abi: #0064d4;

}

body.dark {
  /*========== Colors ==========*/
  --background-head: rgb(36, 3, 75, 0.9);
  --background-primary: #000000;
  --background-secondary: #24034b;
  --background-tertiary: #1e2935;
  --background-tertiary2: #2c3e50;
  --background-main-page: rgb(74, 18, 111);

  --bg-op-ban: rgb(36, 3, 75, 0.9);
  --bg-banafsh: #24034b;
  --bg-sabz: #0b7d57;
  --bg-zard: #b57200;
  --bg-sefid: #000000;
  --bg-khak: #1e2935;
  --bg-khak2: #1c2945;
  --bg-ghermez: hsl(0, 76%, 25%);
  --bg-abi: #0064d4;

  --action-primary: #0b7d57;
  --action-primary-hover: hsl(57, 100%, 25%);
  --action-secondary-hover: rgb(66, 68, 86);
  --action-tertiary: rgb(14, 59, 87);
  --action-tertiary-hover: hsl(0, 77%, 38%);

  --foreground-primary: hsl(0, 0%, 72%);
  --foreground-secondary: hsl(0, 0%, 100%);
  --foreground-tertiary: hsl(0, 0%, 12%);
  --foreground-tertiary1: rgb(215, 215, 215);

  --white: hsl(0, 0%, 0%, 0.9);
  --white-hover: rgba(0, 0, 0, 0.5);
  --black: rgb(255, 255, 255, 0.9);
  --black-hover: rgba(255, 255, 255, 0.7);
  --abi: #009fff;
}

:root {
  /*========== Font and typography ==========*/
  --fs-base: 1.1rem;
  --fs-base-s: 1rem;
  --fs-1: 1.7rem;
  --fs-2: 1.5rem;
  --fs-3: 1.3rem;
  --fs-4: 1.2rem;
  --fs-5: 1.1rem;
  --fs-6: 1.05rem;

  /*========== spacing ==========*/
  --py: 5rem;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent1) 100%);
  /* --accent: #009fff; */
  --accent: #009fff;
  --accent1: #0064d4;
  --white-s: hsl(0, 0%, 100%);
  --white-hover-s: hsla(0, 0%, 100%, 0.7);
  --black-s: #000000;
  --black-hover-s: #00000080;
  --zard: #f59e0b;
  --sabz: #10b981;
  --ghermez: hsl(0, 77%, 38%);

  --primary-color: #009fff;
  --secondary-color: #380079;
  --accent-color: #f59e0b;
  --success-color: #10b981;
}

/*=============== Reset ===============*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "B Nazanin";
  src: url("/fonts/BNazanin.woff2") format("woff2"),
    url("/fonts/BNazanin.woff") format("woff"),
    url("/fonts/BNazanin.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "B Nazanin", "Tahoma", sans-serif;
  font-size: var(--fs-base);
  background-color: var(--white);
  color: var(--black-hover);
  direction: rtl;
  line-height: 1.8;
  text-align: right;
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}

html {
  font-family: "B Nazanin", "Tahoma", sans-serif;
}



/* حالت تاریک/روشن */
.toggle-container {
  position: fixed;
  top: 22px;
  right: calc(1vw + 55px);
  z-index: 99999999;
}

.toggle-switch {
  cursor: pointer;
}

.toggle-switch .icon {
  font-size: 1.5rem;
  position: absolute;
  color: var(--zard);
  filter: drop-shadow(0 0 2px rgb(0, 0, 0, 0.5));
  transition: opacity 0.3s ease;

}

.toggle-switch .moon {
  opacity: 0;
  color: var(--white-hover-s);
}

body.dark .toggle-switch .sun {
  opacity: 0;
}

body.dark .toggle-switch .moon {
  opacity: 1;
}




a {
  text-decoration: none;
  font-weight: 400;
}

p {
  text-decoration: none;
  font-weight: 500;
}

p>strong {
  font-weight: 400;
}

li {
  list-style: none;
  font-weight: 400;
}

img {
  max-width: 100%;
  aspect-ratio: auto 640px / 360px;
}

img,
button {
  display: block;
}

a,
span,
strong {
  display: inline-block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

:focus {
  outline-offset: 4px;
}

/*=============== scrollbar style ===============*/
::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 20px;
  border: 5px double var(--black-s);
}

::-webkit-scrollbar-track {
  background: var(--bg-banafsh);
}

/*=============== BASE ===============*/
p,
b,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
span {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  display: block;
}

h1,
.h1 {
  text-align: center;
  justify-content: center;
  font-size: var(--fs-1);
  font-weight: 900;

}

h2,
.h2 {
  font-size: var(--fs-2);
  font-weight: 800;
}

h3,
.h3 {
  font-size: var(--fs-3);
  font-weight: 700;
}

h4,
.h4 {
  font-size: var(--fs-4);
  font-weight: 600;
}

h5,
.h5 {
  font-size: var(--fs-5);
  font-weight: 600;
}

h6,
.h6 {
  font-size: var(--fs-6);
  font-weight: 550;
}

.accent {
  color: var(--accent);
}

.bg-accent {
  background-color: var(--accent);
}

.accent1 {
  color: var(--accent1);
  font-weight: 700;
}

.bg-accent1 {
  background-color: var(--accent1);
}

.abi {
  color: var(--abi);
}

.fs-base-s {
  font-size: var(--fs-base-s);
}

.inline-block {
  display: inline-block;
}

.inline-block.h2,
.inline-block.h3,
.inline-block.h4 {
  margin-right: 5px;
}

.dir-ltr {
  direction: ltr;
}

.dir-rtl {
  direction: rtl;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container-head {
  padding: 0 15px;
  margin-inline: auto;
  margin: auto;
}

/*=============== HEADER ===============*/
header {
  position: fixed;
  background-color: var(--background-head);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999999;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  direction: ltr;
  box-shadow: 0px 0px 3px black;
}

.head-60px {
  position: relative;
  background-color: var(--bg-banafsh);
  height: 60px;
  width: 100%;
}

header .flex-wrapper {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 60px;
}

.navbar .logo {
  position: relative;
  height: 60px;
}

.navbar .logo img {
  height: 60px;
}



header .btn-group {
  display: flex;
  align-items: center;
}

.mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 50px;
  background-color: var(--background-head);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  direction: rtl;
  z-index: 9999999;
  box-shadow: 0 0px 3px black;
}

.mobile-menu>ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mobile-menu>ul>li {
  display: block;
  width: calc(100% / 5 - 1px);
  height: 100%;
  transition: all 0.2s ease-in;
  z-index: 999;
}

.mobile-menu>ul>li:hover>a {
  color: var(--white-hover-s);
}

.mobile-menu>ul>li>a {
  display: block;
  position: absolute;
  margin: 0 -0.5px 0 0;
  padding: 25px 0 25px 0;
  color: var(--white-hover-s);
  width: 20%;
  height: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 0.85rem;
  z-index: 9999;
  transition: all .2s ease;
}

.mobile-menu>ul>li>a i {
  font-size: 17px;
  position: absolute;
  bottom: calc(100% - 25px);
  right: calc(50% - 8.5px);
}

.mobile-menu>ul>li>a:active,
.mobile-menu>ul>li>a:hover {
  color: var(--white-s);
}




/* ===== language ===== */
.lang {
  position: fixed;
  display: flex;
  border-radius: 50%;
  right: calc(1vw + 20px);
  top: 20px;
  z-index: 99999999;
}

.lang>i {
  font-size: 1.5rem;
  color: var(--accent);
  filter: drop-shadow(0 0px 2px rgb(0, 0, 0, 0.5));
}

.lang>i span {
  position: absolute;
  right: 0px;
  bottom: -7px;
  font-size: .9rem;
  font-weight: 100;
  color: white;
  font-family: "B Nazanin", "Tahoma", sans-serif;
}

.lang ul {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 60px;
  background-color: var(--black-s);
  text-align: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;

  @supports (corner-shape: bevel) {
    border-radius: 8px;
    corenr-shape: bevel;
  }
}

.lang:hover ul {
  opacity: 1;
  visibility: visible;
}

.lang ul li {
  text-align: center;
}

.lang ul li a {
  display: flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 5px 10px;
  border-bottom: 1px solid var(--white-s);
  color: var(--white-s);
  font-size: .75rem;
  transition: all .3s ease;
}

.lang ul li:first-child a {
  font-family: 'Segoe UI', sans-serif;
}

.lang ul li:nth-child(2) a {
  font-size: .9rem;
  font-family: "B Nazanin", "Tahoma", sans-serif;
}

.lang ul li:last-child a {
  border: none;
  font-family: 'Segoe UI', sans-serif;
}

.lang ul li a:hover {
  color: var(--accent);
}

/*=============== body ===============*/
.color-pass,
.color-pass-back {
  transition: all 0.5s ease-in-out;
  transform: scale(1);
  overflow: hidden;
}

.color-pass .span-pass,
.color-pass-back .span-pass {
  position: absolute;
  display: flex;
}

.color-pass .span-pass:nth-child(1),
.color-pass-back .span-pass:nth-child(1) {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.color-pass .span-pass:nth-child(1) {
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--accent));
  animation: color-pass 10s linear infinite;
}

.color-pass-back .span-pass:nth-child(1) {
  right: 0;
  bottom: 0;
  background: linear-gradient(-90deg, transparent, var(--accent));
  animation: color-pass-back 10s linear infinite;
}

.main {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
}

.main .img-main {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .content {
  background-color: var(--bg-op-ban);
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100vw;
  direction: rtl;
  z-index: 120;
  padding: 0 20px 0px 20px;
}

.main .content h2,
.main .content h1 {
  margin-bottom: 10px;
  text-align: right;
  font-size: var(--fs-1);
  color: var(--white-s);
}



/*==== breadcrumb ====*/
.breadcrumb,
.back-link {
  padding: 20px 10px;
  background-color: var(--white);
  box-shadow: 0 0px 1px var(--black);
}

.breadcrumb ul,
.back-link ul {
  direction: rtl;
  display: flex;
  padding: 0 5vw;
}

.breadcrumb ul li,
.back-link ul li {
  display: inline-block;
  font-size: 14px;
  color: var(--black-hover);
}

.breadcrumb ul li a,
.back-link ul li a {
  color: var(--accent);
  padding: 3px 3px 3px 2px;
  transition: all .2s ease-in-out;
  font-size: 1rem;
}

.breadcrumb ul li a:hover,
.back-link ul li a:hover {
  text-decoration: underline;
}

.breadcrumb ul li .page,
.breadcrumb ul li .page:hover,
.back-link ul li .page,
.back-link ul li .page:hover {
  margin-right: 4px;
  color: var(--black-hover);
  text-decoration: none;
  cursor: not-allowed;
}


.english-font {
  font-family: "Times New Roman", Times, serif;
}

.bta-box {
  background-color: var(--bg-khak);
  padding: 20px;
  border-left: 5px solid var(--sabz);
  margin: 30px 0;
}

.cta-box {
  background-color: var(--bg-khak);
  padding: 20px;
  border-right: 5px solid var(--sabz);
  margin: 30px 0;
}



.floating-whatsapp {
  position: fixed;
  bottom: 60px;
  left: 10px;
  background: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: whatsapp-shadow 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/*=== container ===*/
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.container-web {
  max-width: 1200px;
  margin: 0 auto;
}

.container-web>article,
.container-web>section,
.container>article,
.container>section {
  padding: 20px;
}

/* هدر و بخش قهرمان */
.hero-section {
  background: var(--bg-banafsh);
  color: var(--white-s);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  max-width: 800px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.transparency-badge {
  display: inline-block;
  background: var(--bg-zard);
  color: var(--white-s);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  margin: 15px 0;
}

.btn-glow,
.cta-button {
  display: inline-block;
  background: var(--bg-abi);
  color: var(--white-s);
  padding: 8px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

  @supports (corner-shape: squircle) {
    border-radius: 12px;
    corner-shape: bevel;
  }
}

.btn-glow i,
.cta-button i {
  transform: translateY(5px);
}

.btn-glow::before,
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before,
.cta-button:hover::before {
  left: 100%;
}

.btn-glow:hover,
.cta-button:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* بخش محتوای اصلی */
.content-section {
  padding: 20px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0px;
  color: var(--black);
  position: relative;
  font-weight: 700;
}

/* کارت‌های خدمات */
.service-card {
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card h2 {
  color: var(--black);
  font-weight: 700;
  position: relative;
}

.service-card h3 {
  color: var(--black);
  margin: 10px 0 0px;
  font-weight: 600;
}

.service-card p {
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--black-hover);
}

.service-card ul {
  margin: 25px 0;
  padding-right: 20px;
}

.service-card li {
  margin-bottom: 15px;
  font-size: 1.15rem;
  line-height: 1.5;
  position: relative;
  padding-right: 25px;
  color: var(--black-hover);
}

.service-card li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--bg-abi);
  font-weight: bold;
  font-size: 1.3rem;
}

.service-card strong {
  color: var(--black);
  font-weight: 700;
}

/* گرید خدمات */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.service-item {
  background: var(--bg-khak);
  padding: 10px;
  border-radius: 20px;
  border-right: 4px solid var(--accent);

}

.service-icon {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 2rem;
  display: inline-block;
}

.service-item h3 {
  margin-bottom: 15px;
}

/* گرید ویژگی‌ها */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  background-color: var(--white);
  padding: 10px 15px;
  border-bottom: 5px solid var(--accent);

  @supports (corner-shape: squircle) {
    border-radius: 12px;
    corner-shape: bevel;
  }
}

.service-item h3,
.feature-item h3 {
  display: inline-block;
  margin-right: 5px;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.2);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.feature-item p {
  color: var(--black-hover);
}





/* آمار و ارقام */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-text {
  font-weight: 600;
}


/* استایل سوالات متداول */
.faq {
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  margin-bottom: 20px;
  color: var(--black);
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 2px var(--accent);
}

.faq-question {
  padding: 15px 20px;
  background: var(--bg-khak);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h4,
.faq-question h3 {
  font-size: 1.2rem;
}

.faq-question .faq-toggle {
  transition: transform 0.3s ease;
}

.faq-question .faq-toggle i {
  font-size: 1rem;
  color: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-khak2);
}

.faq-answer p {
  padding: 20px;
  color: var(--black-hover);
  line-height: 1.8;
}

.faq-answer a {
  position: relative;
  color: var(--accent);
  padding: 0 20px;
}








/* بخش CTA پایانی */
.final-cta {
  background: var(--bg-banafsh);
  color: var(--white-s);
  text-align: center;
  padding: 100px 20px;
  border-radius: 0;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

/* .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
} */
.hero-section :is(h1, h2, h3, h4),
.final-cta :is(.section-title, h3, h4) {
  color: var(--white-s);
  font-size: 3rem;
}

.hero-section p,
.final-cta p {
  color: var(--white-hover-s);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.final-cta .guarantee-box,
.consultation-highlight {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  margin: 20px auto;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.final-cta .guarantee-box p,
.consultation-highlight p {
  color: var(--white-s);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .service-card {
    padding: 25px 15px;
    margin-bottom: 10px;
  }

  .services-grid,
  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    padding: 50px 20px;
  }

  .hero-section :is(h1, h2, h3, h4),
  .final-cta :is(.section-title, h3, h4) {
    color: var(--white-s);
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 15px 10px;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .cta-button {
    padding: 15px 30px;
  }
}













footer {
  position: relative;
  background-color: var(--bg-khak);
  width: 100vw;
  padding-bottom: 50px;
  direction: rtl;
  text-align: right;
  z-index: 10;
  box-shadow: 0 0px 1px var(--black);
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 20px 30px 30px 30px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--black);
}

.content .top .logo-details {
  position: absolute;
  opacity: 0.2;
  top: 20px;
  z-index: -1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  background-color: var(--bg-banafsh);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-s);
  font-size: 1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

footer .content .link-boxes {
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content .link-boxes .box .link_name {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: var(--black);
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
  color: var(--black);
}

.content .link-boxes .box>li>a {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.content .link-boxes .box>li>a:hover {
  text-decoration: underline;
  opacity: 1;
}

footer .contact li a {
  direction: ltr;
}

.content .link-boxes .input-box {
  z-index: 1;
}
































































/*=============== responsive for larger than 550px screen ===============*/
@media (min-width: 300px) {

  footer .content .top {
    flex-direction: column;
    padding-bottom: 10px;
  }

  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 80%;
    margin-top: 10px;
    margin-right: 10%;
  }

  footer .content .link-boxes .input-box iframe {
    height: 250px;
  }
}

@media (min-width: 550px) {
  :root {
    /*=============== typography ===============*/
    --fs-base: 1.1rem;
    --fs-1: 1.8rem;
    --fs-2: 1.4rem;
  }

  /*=============== BLOG ===============*/

}

/*=============== responsive for larger than 650px screen ===============*/
@media (min-width: 650px) {
  :root {
    /*=============== typography ===============*/
    --fs-base: 1.2rem;
    --fs-1: 1.9rem;
    --fs-2: 1.6rem;
    --fs-3: 1.3rem;
    --fs-4: 1.2rem;
    --fs-5: 1.1rem;
  }

  /*=============== REUSED STYLE  ===============*/


  /*=============== HEADER  ===============*/

}

/*=============== responsive for larger than 768px screen  ===============*/
@media (min-width: 768px) {
  :root {
    /*=============== typography ===============*/
    --fs-base: 1.15rem;
    --fs-1: 2.2rem;
    --fs-2: 1.8rem;
    --fs-3: 1.6rem;
    --fs-4: 1.4rem;
    --fs-5: 1.2rem;
    --fs-6: 1.1rem;
  }

  .main {
    height: calc(90vh - 60px);
  }

  .main .content {
    width: 49vw;
    padding: 10px 30px;
  }

  /*=============== REUSED STYLE  ===============*/
  .container-head {
    max-width: 800px;
  }

  footer {
    position: relative;
  }

  footer .top {
    padding-top: 40px;
    position: relative;
  }

  footer .top .social-links {
    position: absolute;
    right: 0;
    top: 0;
  }

  .content .top .logo-details {
    right: 0;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 57%;
  }

  footer .content .link-boxes .input-box iframe {
    height: 203px;
    width: 100%;
  }
}

/*=============== responsive for larger than 1024px screen  ===============*/
@media (min-width: 992px) {
  :root {
    /*=============== typography  ===============*/
    --fs-base: 1.2rem;
    --fs-base-s: 1.1rem;
    --fs-1: 2.4rem;
    --fs-2: 2rem;
    --fs-3: 1.7rem;
    --fs-4: 1.5rem;
    --fs-5: 1.4rem;
    --fs-6: 1.3rem;
  }


  /*=============== REUSED STYLE   ===============*/
  .container-head {
    max-width: 1000px;
    margin-right: calc(50vw - 410px);
  }

  /*=============== HEADER ===============*/
  header .btn-group {
    display: none;
  }

  header .flex-wrapper {
    display: flex;
    gap: 30px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    float: right;
    direction: rtl;
  }

  .desktop-nav .nav-link {
    transition: all ease-in-out 0.2s;
    font-size: 0.95rem;
    padding: 5px 10px 10px 10px;
    font-weight: 900;
    color: var(--white-s);
  }

  .desktop-nav .nav-link:hover {
    color: var(--white-hover-s);
  }

  .desktop-nav .nav-link>i {
    position: absolute;
    margin: 5px 5px 0 0;
    transition: var(--transition);
  }

  .desktop-nav .nav-link:hover>i,
  .desktop-nav ul:hover .nav-link i {
    transform: rotate(-180deg);
  }

  .mobile-menu {
    display: none;
  }

  #main-100 {
    height: calc(99.5vh - 60px);
  }

  /*=============== Body ===============*/




  .floating-whatsapp {
    bottom: 30px;
    left: 30px;
  }

  /*=============== Footer ===============*/
  footer {
    padding-bottom: 0px;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
  }

  footer .content .link-boxes .input-box {
    margin: 0;
  }
}

@media (min-width: 1300px) {
  :root {
    /*=============== typography  ===============*/
    --fs-base: 1.3rem;
    --fs-1: 2.7rem;
    --fs-2: 2.2rem;
    --fs-3: 1.9rem;
    --fs-4: 1.7rem;
    --fs-5: 1.5rem;
    --fs-6: 1.4rem;
  }
}

/*=============== FOOTER ===============*/
.flex-wrapper ul li ul {
  background-color: var(--black-s);
  box-shadow: 0px 2px 3px var(--black-s);
  position: absolute;
  border-radius: 3px;
  margin-top: 20px;
  opacity: 0;
  /* transform: rotateX(90deg); */
  visibility: hidden;
  padding: 7px 10px;
  transition: all 0.2s ease-in-out;
}

.flex-wrapper ul li:hover ul {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.flex-wrapper ul li ul li a {
  color: var(--white-s);
  justify-content: center;
  border-bottom: 1px solid;
  padding: 7px 10px;
  display: flex;
  font-size: 0.95rem;
  width: 100%;
}

.flex-wrapper ul li ul li a:hover {
  color: var(--black-s);
  background-color: var(--accent);
  font-weight: 900;
}

.flex-wrapper ul li ul li a:active {
  scale: 0.95;
}

.flex-wrapper .about-me {
  width: 200px;
  margin-right: -65px;
}

.flex-wrapper .ul-services {
  width: 300px;
  min-height: 200px;
  text-align: center;
  margin-right: -112px;
}

.flex-wrapper .ul-articles {
  width: 300px;
  min-height: 200px;
  text-align: center;
  margin-right: -115px;
}