* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  will-change: auto;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #003b40;
  --secondary-color: #c9aa89;
  --bg-color: #ffffff;
  --third-color: #dad4c4;
  --text-color: #f7f2ef;
  --accent-color: #040f0f;
  --white-color: #ffffff;
  --loader--color: #003b40;
  --why-color: #c9aa89;
  --gradient_1-color: var(--primary-color);
  --gradient_2-color: var(--secondary-color);
  --card_gradient_1-color: #003b40;
  --card_gradient_2-color: #c9aa89;
  --service_box-color: var(--white-color);
  --footer-color: var(--primary-color);
  /* transition: all 0.3s; */
}

/* #c6ad6871 */
@font-face {
  font-family: "myFirstFont";
  src: url("../eec_fonts/ARBFONTS-DINNEXTLTARABIC-MEDIUM-4.TTF");
}

@font-face {
  font-family: "headerFont";
  src: url("../eec_fonts/ARBFONTS-DINNEXTLTARABIC-LIGHT-2-2.TTF");
}

.dark-theme {
  --primary-color: #c9aa89;
  --secondary-color: #003b40;
  --bg-color: #000000;
  --why-color: #ffffff;
  --loader--color: #000000;

  --gradient_1-color: var(--primary-color);
  --gradient_2-color: var(--white-color);
  --card_gradient_1-color: #c9aa89;
  --card_gradient_2-color: #003b40;
  --service_box-color: var(--accent-color);
  --footer-color: var(--accent-color);
  /* transition: all 0.3s; */
}

body {
  font-family: "myFirstFont";
  font-family: "myFirstFont";
  background-image: url("../imgs/1.png") !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: inherit !important;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
}

p {
  /* font-size: 1.708984375vw; */
  font-size: 1.4rem;
  color: var(--primary-color);
  /* Bootstrap secondary gray */
}

h1,
h1 span {
  background: linear-gradient(
    243deg,
    var(--secondary-color),
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  animation: animate 5s linear infinite;
}

@keyframes animate {
  from {
    background-position: 0;
  }

  to {
    background-position: 200%;
  }
}

.btn {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn_grid {
  width: 15rem;
  height: 3rem;
  font-size: 22px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  /* animation: popup 4s infinite; */
  position: relative;
}

.btn_grid:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn_grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: conic-gradient(from var(--deg) at center, #c9aa89, #003b40);
  border-radius: inherit;
  z-index: -2;
  padding: 2px;
  animation: autoRotate 2s linear infinite;
  filter: blur(10px);
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
} */

/* .nav {
  position: sticky;
  top: 0;
  background-color: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(96, 28, 252, 0.2);
  z-index: 9999;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #601cfc;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #601cfc;
} */

/* .navbar .container {
  gap: 15rem;
} */

.spinner-wrapper {
  background-color: var(--loader--color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: display 0.6s;
}

.spinner-border {
  width: 60px;
  height: 60px;
  color: #c9aa89;
}

/* From Uiverse.io by Madflows */
/* .toggle-switch {
  position: relative;
  top: 2px;
  left: 4rem;
  width: 100px;
  height: 20px;
  --light: #d8dbe0;
  --dark: #28292c;
  --link: rgb(27, 129, 112);
  --link-hover: rgb(24, 94, 82);
}

.switch-label {
  position: absolute;
  width: 38%;
  height: 15px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid var(--dark);
}

.checkbox {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox:checked ~ .slider {
  background-color: var(--light);
}

.slider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-box-shadow: inset 12px -4px 0px 0px var(--light);
  box-shadow: inset 12px -4px 0px 0px var(--light);
  background-color: var(--dark);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.checkbox:checked ~ .slider::before {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(15px);
  background-color: var(--dark);
  -webkit-box-shadow: none;
  box-shadow: none;
} */

/* -------------------------------------------------------------------------------------------------- */

/* From Uiverse.io by cuzpq */
.theme-checkbox {
  --toggle-size: 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 6.25em;
  height: 3.125em;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, #efefef),
      color-stop(50%, #2a2a2a)
    )
    no-repeat;
  background: -o-linear-gradient(left, #efefef 50%, #2a2a2a 50%) no-repeat;
  background: linear-gradient(to right, #efefef 50%, #2a2a2a 50%) no-repeat;
  background-size: 205%;
  background-position: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 99em;
  position: relative;
  cursor: pointer;
  font-size: var(--toggle-size);
}

.theme-checkbox::before {
  content: "";
  width: 2.25em;
  height: 2.25em;
  position: absolute;
  top: 0.438em;
  left: 0.438em;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, #efefef),
      color-stop(50%, #2a2a2a)
    )
    no-repeat;
  background: -o-linear-gradient(left, #efefef 50%, #2a2a2a 50%) no-repeat;
  background: linear-gradient(to right, #efefef 50%, #2a2a2a 50%) no-repeat;
  background-size: 205%;
  background-position: 100%;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.theme-checkbox:checked::before {
  left: calc(100% - 2.25em - 0.438em);
  background-position: 0;
}

.theme-checkbox:checked {
  background-position: 100%;
}

/* -------------------------------------------------------------------------------------------------- */

#theme-toggle {
  box-shadow: none;
  position: relative;
  left: 35vw;
}

.offcanvas-end{
  background-color: var(--bg-color);
}



.navbar .logo {
  max-width: 70px;
  width: 100%;
}

/* .navbar-nav {
  gap: 0px;
} */

@media (min-width: 769px) {
  .navbar-nav {
    gap: 30px;
  }
}

.nav-link {
  color: var(--primary-color);
  font-size: 12px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 1rem;
}

.navbar-scrolled {
  background-color: var(--secondary-color);
}

.navbar-toggler {
  position: relative;
  left: 20vw;
  color: var(--primary-color);
}

.navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.nav_toggle {
  background-color: #000000;
}

img#logo_2 {
  position: relative;
  right: 18vw;
}

.close_icon {
  position: absolute;
  top: 10vh;
  right: 35vw;
}

@media (min-width: 992px) {
  .navbar .container {
    gap: 8rem;
  }
}

/* End Navbar */
.float {
  position: fixed;
  /* width: 70px;
  height: 70px; */
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover .contact_icon {
  width: 70px;
  height: 70px;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

#contain {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ----------------------------------------------------------- */

.landing img {
  height: auto;
}

/* Hero Section */

.hero_section .gradient-text,
.hero_section .gradient-text > span {
  font-size: 4.5rem;
  /* 1. Define the gradient as a background image */
}

@media (max-width: 426px) {
  .hero_section .gradient-text,
  .hero_section .gradient-text > span {
    font-size: 1.5rem;
    /* 1. Define the gradient as a background image */
  }
}

.hero_btn {
  width: 15rem;
  height: 3rem;
  font-size: 22px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  /* animation: popup 4s infinite; */
  position: relative;
}

.hero_btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.hero_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: conic-gradient(from var(--deg) at center, #c9aa89, #003b40);
  border-radius: inherit;
  z-index: -2;
  padding: 2px;
  animation: autoRotate 2s linear infinite;
  filter: blur(10px);
}

/* .covar .image {
  position: relative;
  background-image: url(../imgs/logo_image.png);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* .covar .image .hero_img {
  width: 100%;
} */

/* .covar .content {
  position: absolute;
  top: 10rem;
  left: 33rem;
  z-index: 0;
}

.covar .content h1 {
  font-size: 4rem;
  font-family: "myFirstFont";
}
.covar .content h1 span {
  color: var(--primary-color);
  font-size: 4rem;
  margin-left: 9rem;
}

.covar .content p {
  max-width: 480px;
}
.covar .image .logo_image {
  position: absolute;
  top: 23rem;
  left: 15rem;
  z-index: 2;
} */
/* .covar .image .logo_image img{
  border-radius: 1rem;
  width: 20vw;
 } */

/* @media screen and (max-width: 767px) {
  .covar .content h1 {
    color: #ffffff;
    font-size: 1rem;
  }

  .covar .content p {
    color: #ffffff;
    max-width: 480px;
  }
} */

.who_we_are .gradient-text {
  font-size: 4.5rem;
}

.who_we_are p {
  padding: 2rem;
}

@media (max-width: 767px) {
  .who_we_are .gradient-text {
    font-size: 50px;
  }

  .who_we_are p {
    padding: 0;
  }
}

/* .who_we_are h1 span {
  color: var(--secondary-color);
} */

/* .who_we_are .logo_image {
  position: absolute;
  top: -5rem;
  right: -3rem;
  z-index: 2;
} */
.who_we_are .logo_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who_we_are .logo_image img {
  border-radius: 1rem;
  /*  */
  width: 340px;
}

@media (min-width: 1024px) {
  .who_we_are .logo_image img {
    width: 500px;
  }
}

@media (max-width: 768px) {
}

/* .team-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
} */

.management-title {
  text-align: center;
  font-size: 47px;
  font-weight: 700;
}

/* .team-track {
  display: flex;
  width: max-content;
  animation: scroll_1 18s linear infinite;
}

.team-group {
  display: flex;
  align-items: center;
}

.team-group img {
  height: 300px;
  margin: 0 35px;
  border-radius: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: contrast(0.7);
}

.team-group img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.team-group div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 35px;

  color: var(--white-color);
  font-size: 18px;
}

.team-group div h1 {
  font-size: 24px;
}

.team-group div p {
  color: #c9aa89;
}

@media (max-width: 767px) {
  .team-group img {
    height: 165px;
  }

  .team-group div h1 {
    font-size: 15px;
  }

  .team-group div p {
    font-size: 12px;
  }
}

@keyframes scroll_1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */

.card-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.card-list .card-item .card-link {
  width: 345px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* background: #fff; */
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
}

.card-list .card-item .card-link_2 {
  width: 312px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* background: #fff; */
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
}
.card-list .card-item .card-link_2 h1 {
  font-size: 22px;
}
.card-list .card-item .card-link_2 p {
  font-size: 15px;
}
/* .card-list .card-item .card-link .card-img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1/1;
} */
.box,
.box img {
  aspect-ratio: 1/1;
  border-radius: 10px;
  position: relative;
}

@property --deg {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

.box::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: conic-gradient(from var(--deg) at center, #c9aa89, #003b40);
  border-radius: inherit;
  z-index: -2;
  padding: 2px;
  animation: autoRotate 2s linear infinite;
  filter: blur(10px);
}

@keyframes autoRotate {
  0% {
    --deg: 0deg;
  }
  100% {
    --deg: 360deg;
  }
}

.box {
  /* animation: popup 7s infinite; */
}

@keyframes popup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.card-list .card-item .card-link h1 span {
  font-size: 29px;
}

.card-list .card-item .card-link p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .card-list {
    text-align: -webkit-center;
  }
  .card-list .card-item .card-link {
    width: 205px;
  }

  .card-list .card-item .card-link h2 {
    font-size: 16px;
  }
  .card-list .card-item .card-link p {
    font-size: 9px;
  }
  .card-list .card-item .card-link_2 {
    width: 192px;
  }
  .card-list .card-item .card-link_2 h2 {
    font-size: 13px;
  }
  .card-list .card-item .card-link_2 p {
    font-size: 9px;
  }
}
.lawyers-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.lawyers-title {
  text-align: center;
  font-size: 47px;
  font-weight: 700;
  margin-bottom: 25px;
  /* 1. Define the gradient as a background image */
}

.lawyers-track {
  display: flex;
  width: max-content;
  animation: scroll_1 40s linear infinite;
}

.lawyers-group {
  display: flex;
  align-items: center;
}

.lawyers-group img {
  height: 150px;
  margin: 0 35px;
  border-radius: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* .brand-group img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
} */

.lawyers-group div {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 10px; */
  margin: 0 35px;

  color: var(--white-color);
  font-size: 18px;
}

@keyframes scroll_1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.brand-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-title {
  text-align: center;
  font-size: 47px;
  font-weight: 700;
  margin-bottom: 25px;
  /* 1. Define the gradient as a background image */
}

.brand-track {
  display: flex;
  width: max-content;
  height: 11rem;
  animation: scroll_2 18s linear infinite;
}

.brand-group {
  display: flex;
  align-items: center;
}

.brand-group img {
  height: 150px;
  margin: 0 35px;
  border-radius: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* .brand-group img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
} */

.brand-group div {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 10px; */
  margin: 0 35px;

  color: var(--white-color);
  font-size: 18px;
}

@keyframes scroll_2 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.counters {
  text-align: center;
  position: relative;
}

.counters > .row {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.counters .counter span {
  color: var(--primary-color);
}

.counters .counter p {
  color: #c9aa89;
}

.counter-value {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 0.5em;
  /* color: var(--primary-color);  */
  /* 1. Define the gradient as a background image */
}

/* ----------------------------------------------------------- */
/* Services Section */

.swiper {
  width: 240px;
  height: 320px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  display: block;
  margin: auto;
}

.swiper-slide .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
}

.swiper-slide .content:hover {
  transform: scale(1.1);
}

.swiper-slide .content h1 {
  color: #ffffff;
  font-size: 30px;
  padding: 0px 20px 20px 25px;
  /* 1. Define the gradient as a background image */
}

.swiper-slide .content > * {
  transform: translateY(25px);
  transition: transform 0.6s;
}

.swiper-slide .content > *:hover {
  transform: translateY(px);
}

/* ----------------------------------------------------------- */
/* Why Us Section */

.why_Us .why_Us_header {
  font-size: 4.5rem;
}

@media (max-width: 767px) {
  .why_Us .why_Us_header {
    font-size: 53px;
  }
}

/* Blinking cursor */
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}

/* Typing + erase + re-type */
@keyframes typing {
  0% {
    width: 0;
  }

  50% {
    width: 35%;
  }

  /* fully typed */
  90% {
    width: 35%;
  }

  /* stay fully typed for a moment */
  100% {
    width: 0;
  }

  /* erase again → loop */
}

/* If you want it to pause a bit when fully typed (feels more natural) */
@keyframes typing {
  0% {
    width: 0;
  }

  40% {
    width: 35%;
  }

  /* type in */
  60% {
    width: 35%;
  }

  /* stay fully visible */
  100% {
    width: 0;
  }

  /* erase */
}

@keyframes who_typing {
  0% {
    width: 0;
  }

  40% {
    width: 90%;
  }

  /* type in */
  60% {
    width: 90%;
  }

  /* stay fully visible */
  100% {
    width: 0;
  }

  /* erase */
}

@keyframes who_typing_media {
  0% {
    width: 0;
  }

  40% {
    width: 90%;
  }

  /* type in */
  60% {
    width: 90%;
  }

  /* stay fully visible */
  100% {
    width: 0;
  }

  /* erase */
}

@keyframes why_typing_media {
  0% {
    width: 0;
  }

  40% {
    width: 62%;
  }

  /* type in */
  60% {
    width: 62%;
  }

  /* stay fully visible */
  100% {
    width: 0;
  }

  /* erase */
}

@keyframes contact_typing {
  0% {
    width: 0;
  }

  40% {
    width: 127%;
  }

  /* type in */
  60% {
    width: 127%;
  }

  /* stay fully visible */
  100% {
    width: 0;
  }

  /* erase */
}

/* @keyframes cursor {
  50% {
    border-color: transparent;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
} */

.why_Us section h1 {
  font-size: 40px;
}

.why_Us .accordion-header .accordion-button {
  font-size: 20px;
  color: var(--primary-color);
}

.why_Us .accordion-header .accordion-button:hover {
  color: var(--why-color);
}

.why_Us .accordion-header .accordion-button .accordion_span {
  text-decoration: underline;
  color: var(--why-color);
}

.why_Us .accordion-item:hover .accordion_span {
  color: var(--primary-color);
}

.accordion .accordion-button {
  color: var(--white-color) !important;
  background-color: transparent;
  box-shadow: none;
}

.accordion-item {
  border: 0px solid;
  color: var(--primary-color);
  /* transition: all 0.3s ease; */
}

.accordion-item .accordion-header:hover {
  width: fit-content;
}

.accordion-item .accordion-button {
  color: var(--secondary-color);
}

.accordion .accordion-button::after {
  background-image: none;
}

.accordion-item .accordion-button {
  color: var(--primary-color) !important;
}

.accordion-item:hover .accordion-button {
  color: var(--why-color) !important;
  border-radius: 1rem;
  width: fit-content;
}

.why_Us_line {
  font-size: 25px;
}

@media (max-width: 768px) {
  .why_Us_line {
    margin-bottom: -2rem;
  }
}

/*  */

.blog-card {
  background-color: transparent;
  width: 310px;
  height: 330px;
  perspective: 1000px;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 35px;
  width: 18rem;
  height: 20rem;
  border-radius: 2rem;
  color: var(--white-color);
  font-size: 18px;
  border-radius: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;

  /* border-bottom: var(--secondary-color) solid 6px;
  border-left: var(--secondary-color) solid 6px; */
}




.flip-card-content {
  transform: rotateY(180deg);
  /* animation-play-state: paused !important; */
}

/* Contact Us Section */
.contact_us .contact_content {
  margin-top: 5rem;
}

.contact_us .contact_header {
  font-size: 4.5rem;
}

@media (max-width: 767px) {
  .contact_us .contact_header {
    font-size: 53px;
  }
}

.contact_us form label {
  color: #c9aa89;
}

.contact_us form input {
  background: transparent;
  color: var(--primary-color);
}

.contact_us form input:focus {
  background: transparent;
  box-shadow: none;
  color: var(--primary-color);
}

.contact_us form textarea {
  background: transparent;
  color: var(--primary-color);
}

.contact_us form textarea:focus {
  background: transparent;
  box-shadow: none;
  color: var(--primary-color);
}

.contact_us form .btn {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.contact_us form .btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.footer .footer_bg {
  /* background-color: #08071e; */
  background-color: var(--footer-color);
}

.footer .container img {
  max-width: 15rem;
  height: auto;
}

/* @media (min-width: 320px) {
  .footer .container img {
    margin: 0px !important;
  }
}

@media (min-width: 375px) {
  .footer .container img {
    margin: 0 30px !important;
  }
}

@media (min-width: 425px) {
  .footer .container img {
    margin: 0 60px !important;
  }
}

@media (min-width: 768px) {
  .footer .container img {
    margin: 0px !important;
  }
} */

/* @media (max-width: 425px) {
  .footer .container img {
    margin: 0 !important;
  }
} */

@media (max-width: 768px) {
}

.footer .title {
  color: #c9aa89;
  font-size: 28px;
}

.footer .navbar-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer .footer_p {
  color: #c9aa89;
  /* padding-left: 5px; */
}

.footer p {
  color: var(--white-color);
  /* padding: 36px; */
  font-size: 16px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .footer .title {
    color: #c9aa89;
    font-size: 20px;
  }

  .footer p {
    color: var(--white-color);
    /* padding: 36px; */
    font-size: 10px;
  }
}

.footer .footer-link {
  color: #c9aa89;
  text-decoration: none;
}

.footer .footer-link:focus,
.footer .footer-link:hover {
  background-color: transparent;
  color: var(--third-color);
  width: max-content;
}

/* Services Page */

.service_box {
  margin-top: 5em;
  background-color: var(--bg-color);
  border-radius: 1rem;
  border: var(--secondary-color) solid 6px;
}

.service_box .img-fluid {
  border-radius: 1rem;
}

.service_box .service_box_text .service_btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.service_box .service_box_text .service_btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.service_box .service_box_text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Blogs Page */

.textHeader .gradient-text > span {
}

.blog_card {
  position: relative;
  height: 15rem;
  background-color: var(--secondary-color);
}

.blog_card .card-title{
  font-size: 25px;
}
.blog_card .card-text{
  font-size: 15px;
}

.blog_card .blog_a {
  position: absolute;
  bottom: 0;
  color: var(--primary-color);
  text-decoration: none;
}

/* Management Page */
/* Services Page */

.managment_box {
  margin-top: 5em;
  background-color: var(--bg-color);
  border-radius: 1rem;
  justify-content: center;
}

.managment_box .img-fluid {
  border-radius: 2rem;
  max-width: 500px;
}

.managment_box .managment_box_text .managment_btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.managment_box .managment_box_text .managment_btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.h {
  width: 80%;
  height: 7px;
  border: 0 none;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}

/* .managment_box .managment_box_text {
  margin-top: 10%;
} */
