*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif !important;
}

:root {
  /* Theme Colors */

  --main-color: #094C70;
  --secondary-color: #03625f;
  --tertiary-color: #ffc000;
  --orange-color: #f97b22;
  --tertiary-color-rgb: 255, 192, 0;
  --grey-color: #353e4d;

  --bg-main-light: #eef5ff;
  --bg-medium-light: #91c8e433;
  --bg-light: #c5dff84d;
  --bg-dim-light: rgb(121, 159, 195, 0.75);
  --bg-slate: #cacccf;
  --bg-cream: #f1eee9;

  --blueish-gradient: linear-gradient(90deg, #094c70 0%, #636569 100%);
}
body {
  background-color: var(--bg-main-light);
}

.top-btn-links {
  padding: 0px 40px;
}

.dash-icon-size img{
  height: 20px;
}

.dialcode_select {
  width: 10% !important;
}

.dialcode_input {
  width: 90% !important;
}

.bg-greenish {
  background-color: #435C6F;
}

.why-choose-section {
  background-image: url(../img/why-choose-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 50px;
}

.why-choose-section img {
  height: 150px;
}

.integrated_system_section {
  background-image: url(../img/integrated-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0px 50px;
  padding-bottom: 80px;
}

.integrated_system_section .img-icon {
  height: 100px;
}

.integrated-col-1 {
  padding-top: 80px;
  padding-right: 50px;
}

.integrated-col-2 {
  border: 8px solid #094c70;
  border-top: 0px;
  border-radius: 0px 0px 250px 250px;
  padding: 0px;
}

.btn-white {
  width: 100%;
  padding: 14px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #094c70;
  text-align: center;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
}

.btn-signup {
  width: 100%;
  padding: 6px 18px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  background-color: var(--main-color);
  text-align: center;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
}

.btn-signup:hover {
  color: #094c70;
  background-color: #ffffff !important;
}

.btn-signup img {
  width: 18px;
  filter: invert() brightness(100);
}

.btn-signup:hover img {
  filter: none;
}

.sidebar-icon-size img {
  width: 24px;
}

.login-popup {
  position: fixed !important;
  left: 0;
  width: 16.5%;
}

.whatsapp-icon {
  position: fixed !important;
  transform: translate(-20px, -20px);
  bottom: 0 !important;
  left: auto;
  right: 0;
  z-index: 9999;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4c974c;
  color: white;
  transition: transform 0.3s ease;;
}

.whatsapp-icon:hover {
  transform: translate(-20px, -20px) scale(1.1);
}

.bg-main {
  background-color: var(--main-color);
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-tertiary {
  background-color: var(--tertiary-color);
}
.bg-slate {
  background-color: var(--bg-slate);
}
.bg-cream {
  background-color: var(--bg-cream);
}
.text-main {
  color: var(--main-color);
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-tertiary {
  color: var(--tertiary-color);
}
.bg-light-tertiary {
  background-color: rgba(var(--tertiary-color-rgb), 0.2);
}
.lh-120 {
  line-height: 120%;
}
.border-orange {
  border-color: var(--orange-color) !important;
}

.main-nav {
  padding: 30px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 16% !important;
  background: #094c70;
  height: 100vh;
  overflow-y: scroll; /* Ensure the content still scrolls */
}

.main-nav::-webkit-scrollbar {
  display: none; /* Hides the scrollbar */
}

.carousel img {
  border-radius: 20px !important;
}

.main-nav .nav-item .active {
  color: white;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(205, 205, 205, 1) 100%);
  margin: 0px;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  opacity: 1;
}
.text-grey-light {
  color: var(--grey-color);
  opacity: 0.5;
}
.nav-form-label {
  font-size: 12px !important;
}
.fs-10 {
  font-size: 10px !important;
}

.header-login {
  border: 1px solid rgba(0, 0, 0, 0.188) !important;
}
.header-login:hover {
  border: 1px solid var(--main-color) !important;
  color: var(--main-color) !important;
}

#login-form {
  position: relative;
}

#login-form::before {
  content: "";
  background-color: var(--bg-cream);
  height: 15px;
  width: 15px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
}

#login-form .accordion-body {
  border-radius: 5px;
  padding: 10px 25px !important;
}

.nav-btn:hover {
  background-color: var(--bg-cream) !important;
  color: var(--main-color);
}
#login-form input {
  font-size: 12px !important;
  padding: 10px 20px;
}
.text-grey-80 {
  color: var(--grey-color);
  opacity: 0.8;
}
.carousel-indicators .active {
  background-color: #094c70;
}
.carousel-indicators {
  top: 105%;
}
.w-fit-content {
  width: fit-content;
}
.pricing-card-title {
  padding: 0.2rem 3rem !important;
}
.price-card-benefits::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: var(--tertiary-color) !important;
  border-radius: 50%;
  top: 50%;
  transform: translate(-200%, -50%);
}
.pricing-card-link {
  background-color: #636d7f;
  writing-mode: vertical-lr !important;
  border-bottom-left-radius: 20px;
  transform: translate(99%, 25%) rotate(180deg);
}
.price-card-benefits::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #d9d9d9;
  left: 0;
  top: 120%;
}
.footer-sunmit-btn {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  transform: translate(28px, 28px);
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-form-control-bg);
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.bg-main-dim {
  background-color: var(--bg-main-dim);
}
.bg-main-light {
  background-color: var(--bg-main-light);
}
.bg-medium-light {
  background-color: var(--bg-medium-light);
}
.bg-light {
  background-color: var(--bg-light) !important;
}
.bg-dim-light {
  background-color: var(--bg-dim-light) !important;
}
.blueish-gradient {
  background-image: var(--blueish-gradient);
}
.effective-card-image {
  height: 225px;
  width: 283px;
  border-top-left-radius: 0px !important;
}
.section-heading {
  font-size: 1.75rem !important;
}
.languageBtn {
  padding: 0px;
  width: 130px;
  height: 36px;
  display: flex;
  align-items: center;
  border-radius: 5px !important;
}

.languageBtn .language-link {
  font-size: 14px !important;
  font-weight: 600;
  border-radius: 5px !important;
}

.languageBtn .language-link.active {
  background-color: var(--main-color);
  color: white !important;
  border-radius: 5px !important;
}
.navbar-toggler-icon {
  background-image: url("../img/navbar-toggle-icon.png") !important;
}
.footer-email {
  border-top-right-radius: 999rem !important;
  border-bottom-right-radius: 999rem !important;
  padding: 10px;
}
textarea.footer-message {
  border-radius: 0px 20px 0px 0px !important;
}

.footer-message::placeholder {
  color: white !important;
  font-weight: bold;
  padding: 10px;
  border-radius: 20px 0px 0px 0px;
}
.footer-link-icon::before,
.footer-link-icon::after {
  content: "";
  position: absolute;
  height: 60%;
  width: 1px;
  left: 90%;
  top: -3%;
  background-color: var(--main-color) !important;
  transform: rotate(135deg);
}
.footer-link-icon::after {
  transform: rotate(225deg);
  top: 40%;
}
.contact-page-links::before,
.contact-page-links::after {
  content: "";
  position: absolute;
  height: 60%;
  width: 1px;
  left: 90%;
  top: -3%;
  background-color: #fff !important;
  transform: rotate(135deg);
}
.contact-page-links::after {
  transform: rotate(225deg);
  top: 40%;
}
.payment-logo {
  height: 75px;
}
.rounded-20px {
  border-radius: 20px !important;
}
.login-accordion-btn {
  padding: 7px;
}
.login-accordion-btn::after {
  display: none !important;
}
.taqreri-nav-pills.nav-pills li {
  padding-bottom: 0px !important;
}
.nav-link.active {
  padding: 18px 0px;
}
.taqreri-nav-pills.nav-pills .nav-link.active,
.taqreri-nav-pills.nav-pills .show > .nav-link {
  background-color: var(--tertiary-color);
  border-radius: 99rem;
  color: var(--main-color);
}
.taqreri-nav-pills.nav-pills .nav-link {
  border-radius: 99rem;
}
.taqreri-nav-pills .nav-link:hover {
  color: var(--tertiary-color);
}
.features-tab-image {
  height: 250px;
  border-top-left-radius: 80px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 80px;
}
.taqreri-accordions .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.taqreri-accordions .accordion-button:not(.collapsed) {
  color: var(--main-color) !important;
}
.taqreri-accordions .accordion-body {
  margin-top: -40px;
  padding: 50px !important;
  padding-top: 60px !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 90px;
  border-bottom-left-radius: 90px;
}
.taqreri-contact-form {
  background-color: white;
}
.taqreri-contact-form input,
.taqreri-contact-form textarea {
  padding: 15px 25px;
  background-color: rgba(66, 125, 157, 0.062);
}
.taqreri-contact-form input::placeholder,
.taqreri-contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.303);
  font-size: 14px;
}
.module-header-img {
  height: 300px !important;
}


.mod_circle {
  width: 200px;
  height: 200px;
  padding: 50px 0px;
  position: relative;
}

.mod_circle_img1, .mod_circle_img2, .mod_circle_img3 {
  position: absolute;
  width: 100px;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center the images */
}

/* Set initial positions with transformations */
.mod_circle_img1 {
  animation: rotateCircle 5s infinite linear;
}

.mod_circle_img2 {
  animation: rotateCircle2 5s infinite linear;
}

.mod_circle_img3 {
  animation: rotateCircle3 5s infinite linear;
}

/* Rotate the images around the circle */
@keyframes rotateCircle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(90px); /* Move along the path */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(90px); /* Full rotation */
  }
}

@keyframes rotateCircle2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(90px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(90px); /* 360deg + 120deg */
  }
}

@keyframes rotateCircle3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(90px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(90px); /* 360deg + 240deg */
  }
}

.sponsor-img {
  width: 300px;
  height: 100px;
}

.img-fit {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.h-lg-100 {
  height: 100%;
}

.p-basic-card {
  background: #1B4166;
  color: #FFC000;
}

.p-professional-card {
  background: #FFC000;
  color: #1B4166;
}

.p-custom-card {
  background: #03625F;
  color: #03625F;
}

.single-slide {
  height: 300px !important; 
  border-radius: 26px !important;
}

.p-card {
  position: relative;
  z-index: 2;
  width: 95%;
  padding: 30px 0px 30px 0px;
  border-radius: 10px;
}

.p-title {
  background: white;
  width: 80%;
  padding: 15px 30px;
  border-radius: 30px 0px 0px 30px;
  font-size: 20px;
  font-weight: 600;
  text-align: end;
}

.p-price {
  text-align: center;
  padding: 20px 0px;
  font-size: 26px;
  font-weight: 600;
}

.p-items {
  background: white;
  width: 82%;
  border-radius: 0px 15px 15px 0px;
  padding: 30px 0px;
  font-size: 18px;
  font-weight: 600;
}

.p-items ul li {
  padding: 15px 18px !important;
}

.p-items ul li:not(:last-child) {
  border-bottom: 1px solid rgb(230, 230, 230); /* This will apply the border to all except the last */
}

.p-items ul li i {
  font-size: 16px;
  padding-right: 10px;
}

.p-card-button {
  position: absolute;
  z-index: 1;
  background-color: #636d7f;
  writing-mode: vertical-lr !important;
  border-bottom-left-radius: 20px;
  transform: translate(4%, -170%) rotate(180deg);
  color: white;
  height: 190px;
  right: 0;
  text-decoration: none;
  font-weight: 800;
  width: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table.table-bordered {
  border-radius: 10px;
  overflow: hidden;
  outline: auto;
  outline-color: #f97b22;
}

.slide-btn-bg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 35px;
  padding-right: 30px;
  width: 35%;
  height: 215px;
  right: 0;
  position: absolute;
  z-index: 9999;
  left: auto;
  background-position: right;
  bottom: 0;
  background-image: url(../img/slick-slide-btn-bg.png) !important;
  background-size: 392px 210px;
  transform: translate(9px, 22px);
  background-repeat: no-repeat;
}

.buttonBg {
  position: absolute;
  bottom: 0;
  background-image: url(../img/buttonBg.png) !important;
  background-size: contain;
  background-repeat: no-repeat;
  width: 81px;
  height: 100;
  display: flex;
  transform: translate(10px, 42px);
}

.accordionIconBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
}

.accordionIconBox2 {
  width: 140px;
  height: 1px;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.bg-dark-blue {
  background-color: #1b4166;
}

.f-accordion-btn {
  font-size: 22px;
}

.f-accordion-body {
  font-size: 22px;
}

.main-nav .nav-link {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.slider-btn {
  font-size: 20px !important;
  padding: 18px 50px; 
  border-radius:20px;
}

.nav-item-icon img {
  height: 18px !important;
  padding-right: 15px;
}

.main-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  
  .dialcode_select {
    width: 15% !important;
  }
  
  .dialcode_input {
    width: 85% !important;
  }

  .languageBtn {
    width: 110px;
    height: 26px;
    padding: 0px;
  }

  .languageBtn .language-link {
    font-size: 12px !important;
    padding: 2px 0px !important;
  }

  .integrated_system_section {
    padding: 50px 50px;
  }
  
  .integrated-col-1 {
    padding-top: 00px;
  }

  .integrated-col-2 {
    border-radius: 250px;
  }

  .integrated_system_section .img-icon {
    height: 80px;
  }

  .h-lg-100 {
    height: auto;
  }
  
  .payment-logo {
    height: 60px;
  }
  .slick-slide .card-title {
    font-size: 20px !important;
  }

  .main-nav {
    position: relative;
    width: auto !important;
    height: auto;
    border-radius: 10px;
  }

  .nav-link.active {
    padding: 10px 30px !important;
  }

  .main-nav .nav-link {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .slider-btn {
    padding: 14px 30px;
    border-radius: 12px;
  }

  .slide-btn-bg {
    padding-bottom: 45px;
    background-size: 290px 145px;
    transform: translate(8px, 35px);
  }
}

/* Mobile (up to 600px) */
@media only screen and (max-width: 600px) {
  /* Styles for mobile devices */

  .dialcode_select {
    width: 25% !important;
  }
  
  .dialcode_input {
    width: 75% !important;
  }

  .languageBtn {
    width: 105px;
    height: 24px;
    padding: 0px;
  }

  .languageBtn .language-link {
    font-size: 10px !important;
    padding: 2px 0px !important;
  }

  .integrated-col-2 {
    margin-top: 30px;
  }

  .h-lg-100 {
    height: auto;
  }

  .main-nav {
    position: relative;
    width: auto !important;
    height: auto;
    border-radius: 10px;
  }

  .nav-link.active {
    padding: 10px 30px !important;
  }

  .main-nav .nav-link {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  #login-form {
    position: absolute !important;
    z-index: 100;
  }

  #login-form::before {
    left: 16% !important;
  }

  .second-main-column {
    margin-top: 0px;
  }
  .main-slider-img {
    height: 160px;
  }
  .slide-btn-bg {
    padding-bottom: 76px;
    padding-right: 20px;
    background-size: 170px 75px;
    transform: translate(6px, 72px);
  }
  
  .slider-btn {
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 10px !important;
  }

  .main-navbar {
    margin-top: 20px;
  }
  .section-heading {
    font-size: 1rem !important;
  }
  .mobile-small-img {
    height: 60px;
  }
  .fs-mobile-heading-1 {
    font-size: 20px !important;
  }
  .fs-mobile-heading-2,
  .slick-slide.slick-active.slick-current .card-title {
    font-size: 16px !important;
  }
  .fs-mob-12 {
    font-size: 12px !important;
  }
  .payment-logo {
    height: 40px;
  }
  .effective-card-image {
    height: auto !important;
    width: auto;
  }
  .feature-image {
    width: 340px !important;
    height: 175px !important;
  }
  .taqreri-accordions .accordion-body {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .fs-14-mob {
    font-size: 14px !important;
  }

  .taqreri-nav-pills.nav-pills li {
    width: 100% !important;
  }

  .taqreri-nav-pills.nav-pills .nav-link {
    width: 100% !important;
  }

  .taqreri-nav-pills.nav-pills .nav-link.active,
  .taqreri-nav-pills.nav-pills .show > .nav-link {
    width: 100% !important;
  }

  ul.taqreri-nav-pills {
    border-radius: 35px !important;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
  }

  .taqreri-nav-pills .nav-link.active {
    padding: 10px 0px !important;
  }

  .accordionIconBox {
    display: none !important;
  }

  .accordionIconBox2 {
    display: none !important;
  }

  .f-accordion-btn {
    font-size: 14px;
  }

  .f-accordion-body {
    font-size: 14px;
  }

  .module-header-img {
    height: 180px !important;
  }
}

/* Large Screen (1025px and up) */
@media only screen and (min-width: 1025px) {
  /* Styles for large screen devices */
  .main-nav {
    width: 16.5% !important;
  }

  .languageBtn .language-link {
    padding: 6px 18px;
  }
}
