@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');




* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Tajawal", sans-serif;
}

:root {
  --praimary-color: #6a92ff;
  --secondary-color: #003cc8;
}

body,
html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  direction: rtl;
}

::selection {
  color: rgb(255, 255, 255);
  background-color: var(--praimary-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #083008;
  transition: all 0.4s ease-in;
}


::-webkit-scrollbar-track {
  background: #f0fff2;
}


/* navbar starts */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;

}

.nav-header {
  background-color: #ffffff;
  box-shadow: 8px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.nav-header::before {
  content: "";
  position: absolute;
  background-image: url(../images/footer-pattern.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
}

.navbar .container>a {
  color: var(--praimary-color);
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

nav .brand a {
  text-decoration: none;
}

nav .brand .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: #001a6d;
  margin-right: 15px;
}

nav .brand img {
  width: 80px;
  height: 80px;
}

nav a {
  font-weight: 550;
  font-size: 14px;
  color: var(--praimary-color);
}

nav .nav-item .active {
  color: var(--secondary-color);
}

nav .nav-item {
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-link {
  color: var(--praimary-color);
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.nav-item .dropdown-menu .dropend .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav .dropdown-menu a {
  color: #090909;
  font-size: 14px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

nav .dropdown-menu a:hover {
  padding-right: 23px;
  color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-item:focus,
.dropdown-item:hover {
  background-color: #73aa3812;
}


.nav-item .dropdown-menu .dropend:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  /* transform: translateX(100%); */
  left: -100%;
  top: 15px;
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

.nav-item:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  transform: translateX(50%);
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  right: -67px; 
}

@keyframes growDown {
  0% {
    transform: scaleY(0)
  }

  80% {
    transform: scaleY(1.1)
  }

  100% {
    transform: scaleY(1)
  }
}

.nav-item:hover .dropdown-menu::before {
  content: "";
  position: absolute;
  display: block;
  margin-top: 3px;
  z-index: 5;
  top: -14px;
  margin-left: -4px;
  right: 10%;
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--secondary-color);
  transition: all 0.4s ease-in;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu::before {
  display: none;
}

.navbar-nav .dropdown-menu {
  margin-top: 7px;
  text-align: left;
  transition: all 0.4s ease-in;
}

nav .nav-item #dropdown {
  margin-top: -10px;
}

nav .list-group p {
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  color: #94a3b8;
}

nav .list-group span {
  padding: 5px;
  color: aliceblue;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0.2rem;
}

nav .lang-back {
  padding: 5px 15px;
  border-radius: 20px;
  background-color: var(--praimary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .lang-back i {
  margin-left: 5px;
}

nav a:hover .lang-back {
  background-color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

.navbar .navbar-toggler {
  font-size: 20px;
}

nav .register-link {
  margin-right: 50px;
  display: flex;
  align-items: center;
}

nav .register-link a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff !important;
  font-family: var(--title-font);
  border-radius: 5px;
  text-decoration: none;
  padding: 5px 30px;
}

nav .register-link a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

nav .register-link a:hover:before {
  height: 560%;
}

nav .register-link a:hover {
  color: #fff;
}


@media screen and (max-width: 991px) {
  nav .lang {
    padding-left: 0;
  }
}

@media screen and (max-width: 330px) {
  .navbar .navbar-toggler {
    font-size: 15px;
  }

  nav a img {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
}

nav .nav-item ul {
  list-style:none;
  margin-right: 75px;
}
nav .nav-item .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  margin-right: 8px;
  text-align: center;
}

nav .nav-item .icon-bg i {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  margin-right: 0;
}

nav .nav-item .icon-bg svg {
  fill: #fff;
}

nav .nav-item .icon-bg:hover {
  background-color: var(--secondary-color);
  transition: background-color .4s ease-in-out;
  -webkit-animation: spin 1s linear;
  -moz-animation: spin 1s linear;
  animation: spin 1s linear;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

nav .nav-item .icon-bg:hover i {

  color: #ffffff;
  transition: all .4s ease-in-out;

}

nav .nav-item .icon-bg:hover svg {

  fill: #ffffff;
  transition: all .4s ease-in-out;

}


/* navbar ends */



/* scroll animation */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}



/* slideshow */
.slider {
  width: 100%;
  max-width: 100vw;
  height: 73vh; 
  margin: auto;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.slider .list {
  position: absolute;
  width: 100%;
  /* Set width to 100% to ensure one image at a time */
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: transform 1s ease;
  /* Change to transform for better performance */
}

.slider .list .item {
  min-width: 100%;
  /* Ensure each item takes up full slider width */
  height: 100%;
}

.slider .list img {
  width: 100%;
  /* Set image width to 100% */
  height: 100%;
  object-fit: cover;
}

.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6b785d8a;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
}

.slider .dots li.active {
  width: 30px;
}

@media screen and (max-width: 768px) {
  .slider {
    height: 400px;
  }
}



/* about start */

.about {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(../images/icon-dotted-map.png);
  background-repeat: no-repeat;
  background-position: center right;
  position: relative !important;
  overflow: hidden;
}

.about::before {
  padding-top: 50px;
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;

}

.about .images {
  height: 350px;
  display: flex;
  justify-content: space-around;
}

.about .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .images img.first {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.about .images img.second {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.about h6 {
  color: #1b1b1b;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
}

.about h6 img {

  width: 20%;
  height: 20%;
  object-fit: contain;

}

.about p {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}

.about .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-family: var(--title-font);
  box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  text-decoration: none;
  padding: 5px 30px;
}

.about .button a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

.about .button a:hover:before {
  height: 560%;
}

.about .button a:hover {
  color: #fff;
}



/* team start */
.team {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F4F7F9;
  position: relative;
}

.team:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/particle_2.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.team .container{
  position: relative;
}
.team h2 {
  color: #1b1b1b;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  margin-bottom: 16PX;
}

.team .card {
  border: none;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  /* Ensures the card is above the pseudo-element */
  display: flex;
    flex-direction: column;
    height: 100%;
}

.team .card:before {
  content: '';
  transition: all 0.25s cubic-bezier(.645, .045, .355, 1);
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: 0;
  /* Ensure it's behind the content but still visible */
  opacity: 0;
}

.team .card:hover:before {
  opacity: 1;
  height: 100%;
}

.team .card .image {
  width: 100%;
  height: 200px;
  padding: 15px 15px 0 15px;
  z-index: 1;
  /* Ensures the card is above the pseudo-element */
}

.team .card .image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.team .card .card-body {
  z-index: 1;
  /* Ensures the card is above the pseudo-element */
      flex-grow: 1;
    display: flex; 
    flex-direction: column;
}

.team .card .card-body .member-name {
  font-size: 18px;
  font-weight: 600;
}

.team .card .card-body .member-job {
  font-size: 15px;
  font-weight: 500;
}

.team .card:hover .card-body .member-name {
  transition: all .5s linear;
  color: #fff;
}

.team .card:hover .card-body .member-job {
  transition: all .5s linear;
  color: #fff;
}

.team .card .service-shape {
  position: absolute;
  bottom: -30px;
  left: -40px;
  transition: all .25scubic-bezier(.645, .045, .355, 1);
  transform: scaleX(-1);
}

.team .card:hover .service-shape {
  bottom: -130px;
  left: -140px;
}
.team .button-main{
text-align: center;
margin-top: 32px;
}
.team .button-main a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-family: var(--title-font);
  box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  border-radius: 50px;
  text-decoration: none;
  padding: 5px 30px;
}

.team .button-main a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

.team .button-main a:hover:before {
  height: 560%;
}

.team .button-main a:hover {
  color: #fff;
}


/* activity start */
.activity {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/blog_bg_2.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the section properly */
  position: relative;
  background-color: #cbe0ff; /* Sets the background color behind the image */
}

.activity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 243, 245, 0.7); /* Use opacity instead of solid color */
  z-index: 1; /* Ensures it stays above the background image */
}

.activity * {
  position: relative; /* Ensures content inside `.activity` is above `::before` */
  z-index: 2;
}

.activity h2 {
  color: #1b1b1b;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
  margin-bottom: 16PX;
}

.activity .card {
  border: none;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-left: 12px;
  display: flex;
    flex-direction: column;
    height: 100%;
}

.activity .card .image {
  width: 100%;
  height: 200px;
  margin: 15px 15px 0 15px;
  position: relative;
  overflow: hidden;
  /* Ensures the overlay stays within bounds */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.activity .card .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  /* Inherits the border-radius of the parent */
  background: linear-gradient(to right, #003cc8, #a0bafc);
  opacity: 0;
  transition: opacity 300ms linear;
}

.activity .card:hover .image::after {
  opacity: 0.5;
}

.activity .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 'cover' is better for aspect ratio consistency */
  display: block;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  margin-left: 12px;
}

.activity .card .card-body .activity-name {
  font-size: 18px;
  font-weight: 600;
}
.activity .card .card-body a.label {
  text-decoration:none;
  color:#212529;
}
.activity .card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity .card .card-body p {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}

.activity .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-family: var(--title-font);
  box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  text-decoration: none;
  padding: 5px 30px;
}
.activity .button.main{
  text-align: center;
  margin-top: 32px;
}
.activity .button.main a {
  border-radius: 50px;
}

.activity .button a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

.activity .button a:hover:before {
  height: 560%;
}

.activity .button a:hover {
  color: #fff;
}




/* contact-sec start */

.form-area {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #F4F7F9;
  background-image: url(https://wordpress.themeholy.com/webteck/wp-content/uploads/2024/02/contact_bg_1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-sec .slideshow-shape {
  position: absolute;
  width: 700px;
  height: 360px;
  z-index: -1;
  left: 0;
}
.contact-sec h6 {
  color: #1b1b1b;
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
}

.contact-sec .details h6 img {

  width: 30%;
  height: 30%;
  object-fit: contain;

}

.contact-sec .form-box {
  position: relative;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.contact-sec .form-box .form-header {
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 20px 30px;
  color: #fff;
}

.contact-sec .form-box .form-header p {
  margin-bottom: 0;
}

.contact-sec .form {
  position: relative;
  padding: 30px;
}

.contact-sec .button button {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-family: var(--title-font);
  box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  border-radius: 50px;
  text-decoration: none;
  padding: 5px 30px;
}

.contact-sec .button button:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

.contact-sec .button button:hover:before {
  height: 560%;
}

.contact-sec .form label {
  font-size: 15px;
  font-weight: 550;
  color: #1b1b1b;
}

.contact-sec .form-control {
  font-size: 15px;
  color: #1b1b1b;
  font-weight: 500;
  background-color: #f1f1f1;
  border-radius: 50px;
}
.contact-sec#page .map {
  height: 500px;
  /* margin-top: 40px; */
}
.contact-sec#page .map iframe {
  height: 100%;
  width: 100%;
}
.contact-sec .details-area{
  padding-top: 40px;
  padding-bottom: 30px;
}
.contact-sec .row {
  display: flex;
  flex-wrap: wrap;
}

.contact-sec .col-4 {
  display: flex;
}

.contact-sec .box {
  background-color: #ffffff;
  border-radius: 40px 40px 40px 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures all boxes are equal in height */
  flex: 1;
}

.contact-sec .box-inner {
  padding: 24px;
  display: flex;
  flex-grow: 1;
}

.contact-sec .box .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  margin-left: 8px;
  text-align: center;
  border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
  margin-left: 16px;
}

.contact-sec .box .icon-bg i {
  color: #fff;
  line-height: 30px;
}

.contact-sec .box h5 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
}

.contact-sec .box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body-color);
  line-height: 1.6;
  margin-bottom: 0;
}



/* footer starts */



footer {
  background-image: url(https://wordpress.themeholy.com/webteck/wp-content/uploads/2024/01/blog_bg_1.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

footer .shape {
  content: "";
  position: absolute;
  background: url(../images/Going.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* width: 190px;
  height: 119px; */
  left: 20%;
  bottom: -50%;
  animation: move1 infinite;
  animation-duration: 1s;
  transition: all 0.6s ease-in;
}

footer .logo-box img {
  width: 120px;
  height: 120px;
}

.footer-content .logo-container p a {
  font-weight: 600;
  color: var(--praimary-color);
  text-decoration: none;
}

.footer-content {
  position: relative;
  padding-top: 40px;
  padding-bottom: 10px;
  margin: 0;
}


footer .container {
  position: relative;
}


footer h5 {
  font-size: 23px;
  font-weight: 600;
  color: var(--secondary-color);
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
    1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.footer-content p {
  padding-top: 15px;
  margin-bottom: 0px;
  font-weight: 450;
  font-size: 15px;
  line-height: 25px;
  color: #1b1b1b;
}

footer h6 {
  font-size: 20px;
  font-weight: 600;
  color: #001a6d;
  ;
  padding: 10px 0px;
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding-right: 0;

}

footer .social-media ul {
  margin-bottom: 0;
}

footer .social-media li {
  display: inline-block;
  padding-left: 6px;
}

footer .brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #001a6d;
  margin-right: 15px;
  text-decoration: none;
}

footer li {
  padding-bottom: 4px;
}

footer .contact-link {
  display: flex;
  align-items: center;
}

footer .contact-link .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  margin-left: 8px;
  text-align: center;
  border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
}

footer .contact-link .icon-bg i {
  color: #fff;
  line-height: 30px;
}

footer .social-media .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--praimary-color);
  margin-right: 5px;
  text-align: center;
}

footer .social-media .icon-bg i {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  margin-right: 0;
}

footer .social-media .icon-bg svg {
  fill: #fff;
}

footer .social-media .icon-bg:hover {
  background-color: var(--secondary-color);
  transition: background-color .4s ease-in-out;
  -webkit-animation: spin 1s linear;
  -moz-animation: spin 1s linear;
  animation: spin 1s linear;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

footer .social-media .icon-bg:hover i {

  color: #ffffff;
  transition: all .4s ease-in-out;

}

footer .social-media .icon-bg:hover svg {

  fill: #ffffff;
  transition: all .4s ease-in-out;

}


.footer-link a,
.contact-link a {
  color: #1b1b1b;
  font-size: 15PX;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.footer-link a:hover {
  color: var(--secondary-color);
}

.footer-link a:after {
  position: absolute;
  content: "";
  transition-duration: .3s;
  transition-property: all;
  --tw-bg-opacity: 1;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  background: linear-gradient(90deg, rgb(27 106 171) 0%, rgb(173 246 98) 100%);
  width: 0;
  height: 2px;
  right: 0;
  bottom: 0;
}

.footer-link a:hover:after {
  width: 100%;
}

footer #branch h5 {
  color: rgb(255, 255, 255);
  font-size: 13PX;
  font-weight: 400;
}

footer .contact-sperator {
  height: 1px;
  margin-top: 8px;
  margin-bottom: 0;
  background-color: #d7dbe4;
}

.footer-copyright {
  /*background-image: linear-gradient(190deg, #bacdff, #003cc8);*/
  background: #b4ccf3;
  direction: ltr;
}

.footer-copyright a {
  text-decoration: none;
  color: #3969db;
}

.footer-copyright p {
  font-weight: 450;
  font-size: 14px;
  line-height: 25px;
  color: #f1f4ff;

}

@media (min-width:768px) and (max-width:1200px) {
  footer h5 {
    font-size: 22px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 90px;
  }
}

@media screen and (max-width:420px) {
  footer h5 {
    font-size: 20px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 80px;
  }

  footer .social-media .icon-bg {
    width: 28px;
    height: 28px;
  }

  footer .social-media .icon-bg i {
    font-size: 16px;
    line-height: 28px;
  }
}

/* footer ends */

 

/* Breadcrumb-about starts */

.Breadcrumb {
  background: url(../images/breadcramp.jpg);
  background-position: 0px -245px;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 120px 50px 0 50px;
  border-radius: 20px;
  height: 40vh;
  position: relative;
}
.Breadcrumb:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(285deg, #0000004a 0%, #003cc8bd 70%);
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


.Breadcrumb .interface {
  position: relative;

}

.Breadcrumb h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 60px;
  color: #fff;
}

.Breadcrumb .links {
  padding: 15PX;
  background-color: #0000008c;
  border-radius: 15px;
  width: fit-content;
}

.Breadcrumb a {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: white;
}

.Breadcrumb i.fa-angles-right {
  transform: scaleX(-1);
}

.Breadcrumb span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: #cecece;
}
@media (max-width: 575px){
    .Breadcrumb {
    background: url(../images/breadcramp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 120px 8px 0 8px;
    border-radius: 20px;
    height: 25vh;
    position: relative;
}
}


/* Breadcrumb ends */

.team#page{
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f4f7f900;
}
.team#page .card {
  margin-top: 16px;
}



.activity#page{
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f4f7f900 !important;
  background-image: url(../../images/blog_bg_2.png);

}
.activity#page .card {
  margin-top: 16px;
}
.activity#page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 243, 245, 0);
  z-index: 1;
}



/* Pagination */

.Pagination {
  padding-top: 40px;
}

.Pagination #pagination-box {
  background: var(--block-background-color);
  border: 1px solid var(--decorative-color);
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 10px;
}

.Pagination ul {
  margin-bottom: 0;
}

.Pagination a {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.Pagination .page-item.active .page-link {
  background-color: var(--praimary-color);
  border: 1px solid var(--praimary-color);
  border-radius: 5px;
  width: 40px;
  text-align: center;
  margin: 0 6px;
  border-radius: 100px;
}

.Pagination .page-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--praimary-color);
  margin: 0 6px;
  width: 40px !important;
  height: 40px;
  border-radius: 100px;
}

.Pagination .page-item a:hover {
  background-color: var(--praimary-color);
  color: white;
}

.Pagination #active a {
  /* border-radius: 50%; */
  width: fit-content !important;
  padding: 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: var(--praimary-color);
  color: #fff;
}

@media (min-width:381px) and (max-width:575px) {
  .Pagination .page-item.active .page-link {
    width: 30px;
    margin: 0 3px;
  }

  .Pagination .page-item .page-link {
    margin: 0 3px;
    width: 30px;
  }

  .Pagination #active .page-link {
    width: 30px;
  }

  .Pagination a {
    font-size: 14px;
  }
}

@media screen and (max-width:380px) {
  .Pagination .page-item.active .page-link {
    width: 20px;
    margin: 0 2px;

  }

  .Pagination .page-item .page-link {
    margin: 0 2px;
    width: 20px;

  }

  .Pagination #active .page-link {
    width: 20px;

  }

  .Pagination a {
    font-size: 12px;
  }

  .Pagination .page-item a {
    margin: 0 3px;
    width: 30px !important;
    height: 30px;
  }
}




/* activity-details start */

.activity-details {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(../images/icon-dotted-map.png);
  background-repeat: no-repeat;
  background-position: center right;
  position: relative !important;
  overflow: hidden;
}

.activity-details::before {
  padding-top: 50px;
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;

}

.activity-details .images {
  height: 350px;
  display: flex;
  justify-content: space-around;
}

.activity-details .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-details .images img.first {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.activity-details .images img.second {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.activity-details h3 {
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
}

.activity-details h6 img {

  width: 20%;
  height: 20%;
  object-fit: contain;

}

.activity-details p {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}



/*branches section starts*/
.branch {
  padding-top: 40px;
  padding-bottom: 40px;
}

.branch .card {
  background-color: #eaf0ff;
  position: relative;
  border-radius: 7px;
  padding: 24px;
  margin-top: 24px;
}

.branch .card:before {
  content: '';
  width: 5px;
  background-color: var(--praimary-color);
  position: absolute;
  right: -3px;
  top: 38px;
  bottom: 38px;
}

.branch .card .branch-name {
  font-size: 18px;
  font-weight: 600;
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  color: #fff;
}

.branch .card .data {
  color: #838383;
  font-size: 15px;
  display: flex;
  margin-top: 10px;
}

.branch .card .data a {
  color: #838383;
  text-decoration: none;

}

.branch .card .data span {
  color: var(--secondary-color);
  font-weight: 600;
  margin-left: 4px;
}

.branch .card .data .icon-bg {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  margin-left: 8px;
  text-align: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

.branch .card .data .icon-bg i {
  color: #fff;
  line-height: 25px;
  font-size: 12px;
}



/*news section starts*/
.news {
  padding-top: 40px;
  padding-bottom: 40px;
}

.news .col-md-4 {
  margin-top: 24px;
}
.news .card {
  background-color: #eaf0ff;
  position: relative;
  border-radius: 5px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news .card .card-image {
  background-image: linear-gradient(190deg, #a0bafc, #003cc8);
  padding: 16px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.news .card .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news .card .card-body .news-name {
  font-size: 18px;
  font-weight: 600;
}

.news .card .card-body p {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}

.news .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-family: var(--title-font);
  box-shadow: 0px 6px 16px rgba(13, 94, 244, 0.24);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  text-decoration: none;
  padding: 5px 30px;
}

.news .button a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

.news .button a:hover:before {
  height: 560%;
}

.news .button a:hover {
  color: #fff;
}

.news .card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

