/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');



:root {
  --primary: #3c1800;
  --secondary: #555555;
  --light: #F1F3FA;
  --dark: #1C2035;
}

body {
  font-family: 'Noto Naskh Arabic', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Almarai', 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: #ce6428;
  cursor: pointer;

}

a:hover {
  color: #a14e22;
}

p {
  margin-bottom: 20px;
}


small,
.text-muted {
  font-size: 11px !important;
}


.title h1 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 20px;
}



.back-to-top {
  position: fixed;
  display: none;
  left: 30px;
  bottom: 60px;
  z-index: 99;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 700;
  padding: 10px 30px;
}

.btn-primary {
  border-radius: 50px;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
}

/*** Navbar ***/
.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar {
  padding: 0;
  font-family: 'Almarai', 'Montserrat', sans-serif;
}

.navbar .navbar-nav .nav-link {
  margin-left: 15px;
  padding: 15px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-right: 8px;
}


.navbar .nav-item .dropdown-menu {
  border-radius: 0 !important;
}

.dropdown-item {
  border-bottom: 1px solid #ddd;
}

.dropdown-item {
  white-space: normal;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
    border-top: 1px solid #dee2e6;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
    border: none;
    margin-top: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: .5s;
  }

  /* Ensure horizontal navigation layout */
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .navbar .collapse>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.main-nav .btn-primary {
  padding: 15px 30px !important;
  border-radius: 0;
  font-size: 15px;
}



/*** Header ***/
.carousel-caption {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .1);
  z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: var(--primary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}


/*** Features ***/
.feature-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
  border-color: rgba(0, 0, 0, .03) !important;
}


/*** Video ***/
.video {
  background-image: url("../../images/video.jpg");
  background-position: center center;
  background-size: cover;
  padding: 110px 15px 180px 15px;
  position: relative;
  text-align: center;
  min-height: 300px;
}

.video p,
.video h1 {
  color: #fff;
  margin-top: 10px;
}

.video-sub {
  z-index: 1;
}

.background-overlay {
  background-color: #000;
  opacity: 0.45;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}



.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 36px;
  height: 46px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 28px 20px 20px;
  background: var(--primary);
  margin: auto;


}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 50%;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 50%;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  right: 3px;
  border-right: 30px solid #FFFFFF;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}



/*** category-item ***/
.category-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;



}

.category-item .project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  padding-top: 60px;
  transition: .5s;
}

.category-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

.category-item h3 a {
  color: #fff;
}

.category .owl-carousel {
  margin-top: 30px;
}

.project-carousel .owl-nav {
  position: relative;
  display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  line-height: 25px;
  transition: .5s;
  z-index: 100;
  background: #fff;

}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #FFFFFF;
  line-height: 25px;
}


.project-carousel .owl-nav .owl-next {
  position: absolute;
  left: -35px;
  bottom: 220px;
}


.project-carousel .owl-nav .owl-prev {
  position: absolute;
  right: -35px;
  bottom: 210px;
}



@media (max-width: 768px) {
  .project-carousel .owl-nav {
    top: -70px;
    left: auto;
    right: 50%;
    transform: translateX(50%);
  }

  .project-carousel .owl-nav .owl-prev,
  .project-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}


/*** Statistics Tourism***/
.statistics-section {
  position: relative;
  margin-bottom: 70px;
}

.statistics-section img {
  border-radius: 25px;
}

.statistics-section .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #053270;
}

.box-text {
  background: rgba(78, 156, 247, 0.8);
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-radius: 25px;
  padding: 20px;
  color: #fff;
  width: 65%;
}

.box-text h1 {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
}



.tourism-section {
  position: relative;
  margin-bottom: 100px;
}

.tourism-section img {
  border-radius: 25px;
}

.tourism-section .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #053270;
}



/*** Vote ***/
.vote {
  margin-bottom: 100px;
  background: #fff;
  box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 25px;
  height: 100%;
  clear: both;
}

.vote h2 {
  font-size: 23px;
}

/*** Box News ***/
.box-news {
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 25px;
  height: 100%;
}

.box-news img {
  margin-bottom: 20px;

  border-radius: 25px;
}

.box-news h2 {
  font-size: 22px;
  margin: 10px 0 10px;
}

.box-news .btn {
  margin-bottom: 20px;
}



/*** Content Inner ***/
.content-inner {
  padding: 50px 0 100px 0;

}

.header-inner img {
  width: 100%;
}



.sub-title {
  margin: 0 0 30px 0;
}

.sub-title h1 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 20px;
}



/** News Inner  **/
.news-inner .box-news {
  margin-bottom: 40px;
  height: auto;
}




/*** Contact Us ***/
.contactus {}

.contactus textarea.form-control {
  height: 200px !important;
}

.boxinfo {
  background: #eee;
  padding: 20px;
  margin-bottom: 20px;

}



/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  border-radius: 25px;

}

.team-item .team-social {
  position: absolute;
  padding: 0;
  top: 15px;
  right: 0;
  overflow: hidden;
}

.team-item .team-social li {
  list-style-type: none;
  margin-bottom: 10px;
  margin-right: -50px;
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-social li {
  margin-right: 15px;
  opacity: 1;
}

.team-item .team-social li .btn {
  background: #FFFFFF;
  color: var(--primary);
  border-radius: 40px;
  transition: .5s;
}

.team-item .team-social li .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
  transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
  transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
  transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
  transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
  transition-delay: .5s;
}

.team-item img {
  border-radius: 25px 25px 0 0;

}




/*** Search Box ***/
.search-box {
  padding: 20px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.search-box img.rounded {
  border-radius: 25px !important;
}


.search-box .date {
  color: #868686;
  font-size: 15px;

}

.search-box h2 {
  font-weight: 700;
  font-size: 15px;
  margin: 15px 0;

}

.search-box h2:hover {
  text-decoration: underline;
}




/*** Filter Search ***/
.filter-search {
  padding: 20px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.filter-search ul {
  padding: 0;

}

.filter-search ul li {
  list-style: none;

}

.filter-search h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px 0;

}

/*** Main Form ***/
.main-form {
  padding: 20px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.main-form h2 {
  font-weight: 700;
  font-size: 25px;
  margin: 15px 0;
}


.main-form textarea.form-control {
  height: 130px !important;
}


.form-control {
  margin-bottom: 20px;
}





/*** Quick Link ***/
.quick-link {
  padding: 20px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.quick-link ul {
  padding: 0;

}

.quick-link ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding: 5px 30px 5px 0;
  position: relative;

}

.quick-link ul li a {
  color: #333;
}

.quick-link ul li a:hover {
  color: #4e9cf7;
}



.quick-link h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px 0;

}


.quick-link ul li::before {
  position: absolute;
  content: '\f30a';
  right: 0;
  top: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 16px;
  color: #4e9cf7;
}




/*** Breadcrumb ***/
.main-breadcrumb {
  background: #d0e0f4;
  padding: 15px 0;
  font-size: 15px;
}

.main-breadcrumb .breadcrumb {
  padding: 0;
  margin: 0;
}


/*** Logo Footer ***/
.logo-footer {
  text-align: center;
}


.logo-footer .logoL {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
}



/*** Footer ***/
.footer {
  color: #fff;
  background: var(--primary);
  margin-top: 120px !important;
  font-size: 14px;

}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: right;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  text-decoration: none;
  font-size: 14px;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}


.footer .py-5 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}



.copyright {
  color: #fff;
  background: var(--primary);
  font-size: 14px;

}

.copyright a {
  color: #fff;
}


.copyright a:hover {
  color: var(--primary) !important;
}


/*** New Style ***/

.bi-chevron-left::before {
  content: "\f285";
}

.bi-chevron-right::before {
  content: "\f284";
}


/*** Banner Hero ***/
@media (min-width: 1024px) {
  .main-slider {
    background-attachment: fixed;
  }
}

.main-slider {
  width: 100%;
  height: 100%;
  background: var(--primary);
  position: relative;
  padding: 80px 15px;
}

.main-slider h1 {
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}

.main-slider p {
  font-family: 'Almarai', 'Montserrat', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 20px;
}


form.form-verticle {
  width: 100%;
  display: inline-block;
  margin: 1em 0;
}

.form-search {
  background: #fff;
  border-radius: 50px;
  padding: 25px 50px;
  margin-bottom: 25px;
}

.form-search .btn {
  width: 100%;
}

.form-search .col-lg-2,
.form-search .col-lg-3 {
  padding: 0 5px;

}

.form-search .form-select,
.form-search .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  line-height: 30px;
}

.form-select {
  margin-bottom: 20px;
}

.phone .btn-outline-secondary {
  width: 118px;
  height: 42px;
}

.form-search .btn-primary {
  transition: .5s;
  font-weight: 700;
  padding: 10px 3rem;
  border-radius: 10px;

}

.form-search .form-control {
  margin-bottom: 0;
}

.form-textarea {

  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-form-control-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

#submitCategoryDropdown {
  text-align: right;
}



.box-search {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  margin: auto;
  padding: 25px 15px;

}

.box-search:hover {
  background: #8cc3ff;
  color: #fff;
}

.box-search img {
  text-align: center;
  margin: 0 auto 10px;
}

.main-slider h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.main-slider h3 {
  font-size: 18px;
  color: #000;
}

.main-slider h3 a {
  font-size: 18px;
  color: #000;
}

.main-slider h3 a:hover {
  color: #fff;
}

/*** Header ***/
.header {
  padding: 15px 0;
}

.header .logoL {
  margin: 0 15px 0 0;
}

.header img {
  height: 60px;
  max-height: 60px;
  width: auto;
}


/*** Top Links ***/
.top-links {
  background: #ecf4ff;
  padding: 3px 0;
  font-family: 'Almarai', 'Montserrat', sans-serif;
  font-size: 13px;
}

.top-links ul li {
  color: #333;
  padding: 0 5px;
}


.top-links ul li a {
  color: #333;
  padding: 0 5px;

}




.top-links ul li a:hover,
.top-links ul li .link-dark:hover {
  color: #4e9cf7;
}






/*** Main Nav ***/
.main-nav {
  background: #460404;
  ;
}


/*** Objectives  ***/

.objectives {
  margin: 70px 0;
}

.objectives img {
  border-radius: 25px;
}

.objectives ul {
  padding-right: 1rem;
}

.objectives ul li {
  padding-right: 1rem;
  padding: 0 0 5px 0;
  color: #4e9cf7;
}

.objectives ul li a {
  color: #333;
}

.objectives p {
  padding-left: 50px;
}

.picture {
  position: relative;
  display: inline-block;
}

.image-caption {
  position: absolute;
  bottom: 31px;
  background: #053270;
  right: -45px;
  max-width: 185px;
  padding: 20px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
}

.image-caption h4 {
  font-size: 18px;
  color: #fff;
}





/*** Category  ***/

.category {
  padding: 70px 0;
  background: #f1f5fe;
  position: relative;

}

.category-text {
  margin: -60px auto 0;
  border-radius: 25px;
  position: relative;
  width: 85%;
  text-align: center;
  color: #fff !important;
  padding: 1rem !important;
  min-height: 130px;
  align-content: center;
}

.category-text h3 {
  color: #fff !important;
  font-size: 20px;
}

.category-text p {
  margin: 0;
}


.category img {
  border-radius: 25px;

}

.project-carousel .owl-nav .owl-prev {
  position: absolute;
  right: -35px;
  top: 60px;
}


.category .project-carousel .owl-nav .owl-prev {
  top: 70px;
}

.category .project-carousel .owl-nav .owl-next {
  top: 70px;
}

.category .project-carousel .owl-nav {
  position: initial;
}





.color1,
.color0 {
  background: #011c40;
}

.color2,
.color5 {
  background: #053270;

}

.color3,
.color6 {
  background: #4e9cf7;

}

.color4,
.color7 {
  background: #8cc3ff;

}



/*** Counters  ***/
.counters {
  margin-top: -80px;
  margin-bottom: 70px;
  padding: 0px 15px 0px 15px;
  position: relative;
}

.sub-counters {
  background: #fff;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: flex;
  border-radius: 25px;
  box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.15);
}

.counters h3 {
  font-size: 20px;
  color: #777;
}

.num {
  width: 25%;
  text-align: center;
  padding: 20px;
  border-left: 1px solid #dee2e6;
}

.num:last-child {
  border-left: 0px solid #dee2e6;
}


.count {
  line-height: 80px;
  font-size: 45px;
  font-weight: 800;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

#talkbubble {
  width: 120px;
  height: 80px;
  background: red;
  position: relative;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  float: left;
  margin: 20px;
}

#talkbubble:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-right: 26px solid red;
  border-bottom: 13px solid transparent;
}



@media (max-width: 575.98px) {
  .main-nav {
    background: #fff;
  }

  .navbar .navbar-nav .nav-link {
    color: #333;
  }

  .navbar ul li {
    border-bottom: 1px solid #ddd;
  }

  .navbar ul li ul {
    border: 0px solid #ddd;
    background: #bcd9fb !important;
  }

  .picture {
    margin-top: 20px;
  }

  .image-caption {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    float: right;
    max-width: 100%;
    margin: -50px 0 0 0;
  }

  .project-carousel .owl-nav .owl-prev {
    right: 44%;
  }

  .project-carousel .owl-nav .owl-next {
    left: -53%;
  }

  .num {
    padding: 10px;
  }

  .count {
    line-height: 60px;
    font-size: 27px;
  }

  .box-text {
    background: rgb(78, 156, 247);
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: -50px 0 0px 0;
  }

  .statistics-section,
  .tourism-section,
  .vote,
  .box-news,
  .counters {
    margin-bottom: 50px;
  }

  .objectives {
    margin: 50px 0;
  }

  .category {
    padding: 50px 0;
  }

  .vote,
  .main-news,
  .box-news {
    height: auto;
  }

  .form-search .form-control,
  .form-search .form-select {
    margin-bottom: 15px;
  }

}

@media (min-width: 576px) and (max-width: 767.98px) {
  .main-nav {
    background: #fff;
  }

  .navbar .navbar-nav .nav-link {
    color: #333;
  }

  .navbar ul li {
    border-bottom: 1px solid #ddd;
  }

  .navbar ul li ul {
    border: 0px solid #ddd;
    background: #bcd9fb !important;
  }

  .picture {
    margin-top: 20px;
  }

  .image-caption {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    float: right;
    max-width: 100%;
    margin: -50px 0 0 0;
  }

  .project-carousel .owl-nav .owl-prev {
    right: 5px;
  }

  .project-carousel .owl-nav .owl-next {
    left: 5px;
  }

  .num {
    padding: 10px;
  }

  .count {
    line-height: 60px;
    font-size: 27px;
  }

  .box-text {
    background: rgb(78, 156, 247);
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: -50px 0 0px 0;
  }

  .statistics-section,
  .tourism-section,
  .vote,
  .box-news,
  .counters {
    margin-bottom: 50px;
  }

  .objectives {
    margin: 50px 0;
  }

  .category {
    padding: 50px 0;
  }

  .vote,
  .main-news,
  .box-news {
    height: auto;
  }

  .form-search .form-control,
  .form-search .form-select {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .main-nav {
    background: #fff;
  }

  .navbar .navbar-nav .nav-link {
    color: #333;
  }

  .navbar ul li {
    border-bottom: 1px solid #ddd;
  }

  .navbar ul li ul {
    border: 0px solid #ddd;
    background: #bcd9fb !important;
  }

  .picture {
    margin-top: 20px;
  }

  .image-caption {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    float: right;
    max-width: 100%;
    margin: -50px 0 0 0;
  }

  .project-carousel .owl-nav .owl-prev {
    right: 5px;
  }

  .project-carousel .owl-nav .owl-next {
    left: 5px;
  }

  .num {
    padding: 10px;
  }

  .count {
    line-height: 60px;
    font-size: 27px;
  }

  .box-text {
    background: rgb(78, 156, 247);
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: -50px 0 0px 0;
  }

  .statistics-section,
  .tourism-section,
  .vote,
  .box-news,
  .counters {
    margin-bottom: 50px;
  }

  .objectives {
    margin: 50px 0;
  }

  .category {
    padding: 50px 0;
  }

  .vote,
  .main-news,
  .box-news {
    height: auto;
  }

  .form-search .form-control,
  .form-search .form-select {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (min-width: 1200px) {}


@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1280px;
  }
}


.footer-newsletter {
  background: #ecf4ff;
  float: left;
  width: 100%;
  padding: 1.5rem 0;
  color: #000 !important;
  text-align: center;
  margin-top: 60px;
}

.footer-newsletter input[type="email"] {
  height: 55px;
  padding: 0px 2rem;
  width: 60%;
  border-radius: 50px;
  border: 0px solid;
  color: #000;
  text-align: right !important;

}

.footer-newsletter button {
  border-radius: 50px;
  padding: .8rem 2.5rem;
  border: 0px solid;
  background: #abd2ff;
  color: #fff;
}


.shadow-sm {
  box-shadow: 0 10px 20px rgba(var(--bs-body-color-rgb), .375) !important;
}

.top-links .btn-light {
  --bs-btn-bg: #fbd492;
  --bs-btn-border-color: #fbd492;
}

.top-links {
  background: #F0C792;
  padding: 3px 0;
  font-family: 'Almarai', 'Montserrat', sans-serif;
  font-size: 13px;
}

.top-links .text-primary {
  --bs-text-opacity: 1;
  color: black !important;
}

.top-links .text-primary:hover {
  --bs-text-opacity: 1;
  color: #4e9cf7 !important;
}

.top-links .btn:hover {
  color: #4e9cf7;
  background-color: white;
  border-color: white;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #F0C792;
}

.main-nav .btn-primary {
  border-color: #B87F4B;
  background: #B87F4B;
}

.dropdown-item:hover {
  background-color: #c1c1c1;
}

.image-caption {
  position: absolute;
  bottom: 31px;
  background: #381C03;
  right: -45px;
  max-width: 185px;
  padding: 20px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
}

.wow .btn-primary:hover {
  border-color: #fbd492;
  background: #F0C792;
}

.category {
  padding: 70px 0;
  background: #fff9ef;
  position: relative;
}

.main-slider {
  width: 100%;
  height: 100%;
  background: none;
  position: relative;
  padding: 80px 15px;
}

.main-slider {
  background-image: url(/images/book.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  backdrop-filter: blur(10px);
}

.objectives ul li {
  color: #7b7b7b;
}

.category .color1,
.color0 {
  background-color: #B87F4B;
}

.category .color2,
.color5 {
  background-color: #F0C792;
}

.category .color3,
.color6 {
  background-color: #381C03;
}

.category .color4,
.color7 {
  background-color: #F0C792;
}

.owl-carousel .owl-item img {
  height: 15rem;
}

.video {

  min-height: 350px;
  background-image: url(/images/paner.jpg);
}

.box-text {
  background: #381c03db;
  position: relative;
  right: 1px;
  bottom: 117px;
  border-radius: 25px;
  padding: 20px;
  color: #fff;
  width: 85%;
}

.box-text h1 {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
}

.jam img {
  height: 17rem;
}

.aaaa {
  margin-bottom: 100px;
}

.box-search:hover {
  background-color: #fbd492;
}

.footer-newsletter {
  background: #F0C792;
  float: left;
  width: 100%;
  padding: 1.5rem 0;
  color: #000 !important;
  text-align: center;
  margin-top: 60px;
}

.footer-newsletter button {
  border-radius: 50px;
  padding: .8rem 2.5rem;
  border: 0px solid;
  background: #381C03;
  color: #fff;
}

.ggg {
  background-color: #4e9cf7;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: right;
  color: #B0B9AE;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  text-decoration: none;
  font-size: 14px;
}

.menu_item {
  list-style: none;
}

.form-search {
  background: #fff;
  border-radius: 10px;
  padding: 25px 50px;
  margin-bottom: 25px;
}

.iconsa {
  margin-top: 100px;
}

.box-search {
  background: #F0C792;
  border-radius: 10px;
  text-align: center;
  margin: auto;
  padding: 25px 15px;
}

.box-search h3 {
  font-size: 22px;
}


.bbb {
  align-self: anchor-center;
}

@media (max-width: 575.98px) {
  .category .project-carousel .owl-nav .owl-prev {
    top: auto !important;
  }

  .project-carousel .owl-nav .owl-prev {
    top: 0 !important;
  }

  .category .project-carousel .owl-nav .owl-next {
    top: auto !important;
  }

}

.main-container {
  min-height: 100vh;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.left-image-container {
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-card {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.search-section {
  padding: 40px 30px;
}

.search-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 15px;
  line-height: 1.3;
}

.search-subtitle {
  font-size: 18px;
  color: #5a4a42;
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
  border-color: #8b4513;
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
  background: white;
}

.search-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-row .form-select {
  flex: 1;
}

.btn-search {
  background: #3d2817;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-search:hover {
  background: #2c1810;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-section {
  margin-top: 50px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 20px;
}

.contact-info {
  font-size: 16px;
  color: #5a4a42;
  line-height: 1.8;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #8b4513;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b4513;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #8b4513;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .left-image-container {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .search-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .left-image-container {
    min-height: 300px;
  }

  .search-row {
    flex-direction: column;
    gap: 15px;
  }

  .btn-search {
    width: 100%;
  }

  .form-group {
    margin-bottom: 15px;
  }
}

.bg-slider {
  background-color: #fff9ef;
}
