@font-face {
    font-family: pfdBold;
    src: url(../fonts/PFDinTextArabic-Bold.ttf);
}

@font-face {
    font-family: pfdLight;
    src: url(../fonts/PFDinTextArabic-Light.ttf);
}

@font-face {
    font-family: pfdMedium;
    src: url(../fonts/PFDinTextArabic-Medium.ttf);
}

@font-face {
    font-family: pfdRegular;
    src: url(../fonts/PFDinTextArabic-Regular.ttf);
}

@font-face {
    font-family: pfdThin;
    src: url(../fonts/PFDinTextArabic-Thin.ttf);
}

@font-face {
    font-family: DroidKufi-Bold;
    src: url(../fonts/DroidKufi-Bold.ttf);
}

@font-face {
    font-family: DroidKufi-Regular;
    src: url(../fonts/DroidKufi-Regular.ttf);
}

@font-face {
    font-family: DroidNaskh-Bold;
    src: url(../fonts/DroidNaskh-Bold.ttf);
}

@font-face {
    font-family: DroidNaskh-Regular;
    src: url(../fonts/DroidNaskh-Regular.ttf);
}

@font-face {
    font-family: "Gerta_Regular";
    src: url("../fonts/GretaTextArabicRegular.ttf");
    src: url("../fonts/GretaTextArabicRegular.ttf");
    src: url("../fonts/GretaTextArabicRegular.ttf?#iefix") format("embedded-opentype"), url("../fonts/GretaTextArabicRegular.ttf") format("woff"), url("../fonts/GretaTextArabicRegular") format("opentype");
}

@font-face {
    font-family: "Gerta_Bold";
    src: url("../fonts/GretaTextArabicBold.ttf");
    src: url("../fonts/GretaTextArabicBold.ttf");
    src: url("../fonts/GretaTextArabicBold.ttf?#iefix") format("embedded-opentype"), url("../fonts/GretaTextArabicBold.ttf") format("woff"), url("../fonts/GretaTextArabicBold.ttf") format("opentype");
}

@font-face {
    font-family: "Gerta_light";
    src: url("../fonts/GretaTextArabicLight.ttf");
    src: url("../fonts/GretaTextArabicLight.ttf");
    src: url("../fonts/GretaTextArabicLight.ttf?#iefix") format("embedded-opentype"), url("../fonts/GretaTextArabicLight.ttf") format("woff"), url("../fonts/GretaTextArabicLight.ttf") format("opentype");
}

@font-face {
    font-family: "Gerta_medium";
    src: url("../fonts/GretaTextArabicMedium.ttf");
    src: url("../fonts/GretaTextArabicMedium.ttf");
    src: url("../fonts/GretaTextArabicMedium.ttf?#iefix") format("embedded-opentype"), url("../fonts/GretaTextArabicMedium.ttf") format("woff"), url("../fonts/GretaTextArabicMedium.ttf") format("opentype");
}
@font-face {
    font-family: stc-Bold;
    src: url(../fonts/STC-Bold.ttf);
}
@font-face {
    font-family:stc-regular;
    src: url(../fonts/STC_Forward_Regular.ttf);
}
:root {
    --green-dark: #374b38;
    --green-light: #578559;
    --gray-dark: #1e1e1e;
  }
body {
    direction: rtl;
    font-family:stc-regular;
}
html {
    scroll-behavior: smooth;
}
body,
p,
a,
li,
ul,
input,
div {
    font-family:stc-regular;
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    color: #4e4e4e;
    font-family:stc-bold;
}


h1 {
    font-size: 16px;
    color: #fff;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
    color: #787878;
    font-weight: 400;
    line-height: 24px;
}

h4 {
    font-size: 16px;
}

a {
    -webkit-transition: color 300ms, background-color 300ms;
    -moz-transition: color 300ms, background-color 300ms;
    -o-transition: color 300ms, background-color 300ms;
    transition: color 300ms, background-color 300ms;
}

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

.btn-primary {
    padding: 8px 20px;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #2c3e50;
    outline: none;
    box-shadow: none;
}
.btn-success{
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.carousel-caption .btn-success{
background:#52A656;
border: 1px solid #fff;
display: none;
}
.btn-transparent {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}

.btn-transparent:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.dropdown-menu {
    margin-top: -1px;
    min-width: 180px;
}

.dropdown-menu.viewdropmenu {
    display: block;
    transition: .5s;
}

.center h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.media>.pull-left {
    margin-right: 20px;
}

.media>.pull-right {
    margin-left: 20px;
}

.center {
    text-align: center;
    padding-bottom: 55px;
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}

.lead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.transparent-bg {
    background-color: transparent !important;
    margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}


/*-- start header --*/
#header{
    display: flex;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    padding-right: 60px;
    align-items: flex-start;
 
}
nav .dropdown-menu{
    background: #38543a !important;
    right: 0;
    left: auto !important;
    border-radius: 5px;
    padding-left:15px !important;
}
#header .navbar {
    background: none;
}

#header .navbar-toggler {
    border: none;
}

#header .navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

#header .navbar-toggler i {
    color: #fff;
    font-size: 40px;
}

#header .top-bar {
    border-bottom: none;
    background-image: none;
    background: none;
    border-top: none;
    position: absolute;
    z-index: 3;
    display: none;
}

#header .top-bar>.container {
    padding: 0px 0;
    display: flex;
    justify-content: space-between;
}

#header .top-bar>.container .row {
    margin-left: 15px;
    margin-right: 15px;
}

#header ul.social-share li a {
    display: inline-block;
    color: #0f70b7;
    background: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 2px;
    margin-bottom: 3px;
}

#header .navbar-inverse .navbar-nav>li>a {
    color: #fff;
}

#header .search {
    display: inline-block;
}

#header .header-search-box {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header .search-btn {
    display: flex;
    background: #7728a3 !important;
    color: #f8f9fb !important;
    border-radius: 2px;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
    border: none;
    height: 45px;
    border-radius: 100%;
    margin-right: 5px;
}

#header .menu-btn {
    border-radius: 5px;
    color: #ffc107;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 34px;
    font-size: 35px;
    cursor: pointer;
}

#header .dropdown-menu {
    top: 64px
}

#header input.search-form {
    background: #f9f3f338;
    border-radius: 3px;
    border: 0 none;
    width: 220px;
    padding: 12px 20px 12px 20px;
    color: #fff;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
    border: 1px solid #ffffff71;
    border-left: none;
    border-radius: 30px;
}

#header input.search-form::-webkit-input-placeholder {
    color: #fff;
}

#header input.search-form:hover::-webkit-input-placeholder {
    color: #fff;
}

#header input.search-form:hover {
    width: 230px;
}

#header input.search-form:focus {
    outline: 1px solid #fff;
}

#header .navbar {
    border-radius: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

#header .navbar-nav {
    margin-top: 12px;
    padding-right: 0;
    padding-left: 0;
}

#header .navbar>.container-fluid {
    padding: 0;
}
.navbar>.container{
    padding-right: 0;
    padding-left: 0;
   
}

#header .navbar-nav>li {
    margin-left: 25px;
    padding-bottom: 0px;
}

#header .navbar-inverse .navbar-nav>li>a {
    padding: 5px 10px;
    margin: 0;
    border-radius: 3px;
    color: #fff;
    line-height: 24px;
    display: inline-block;
}

#header .navbar-inverse .navbar-nav>li>a:hover {
    background-color: #00000029;
    color: #fff;
}

#header .navbar-inverse {
    border: none;
}

#header .navbar-inverse .navbar-nav>.nav-item a.active,
#header .navbar-inverse .navbar-nav>.nav-item a.active:hover,
#header .navbar-inverse .navbar-nav>.nav-item a.active:focus,
#header .navbar-inverse .navbar-nav>.nav-item a.open,
#header .navbar-inverse .navbar-nav>.nav-item a.open:hover,
#header .navbar-inverse .navbar-nav>.nav-item a.open:focus {
    background-color: var(--cyan);
    color: #fff;
}

#header .navbar-inverse .navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.394);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
    border: 0;
    padding: 0;
    margin-top: 0;
    border-top: 0;
    border-radius: 0;
    left: 0;
}

#header .navbar-inverse .navbar-nav .dropdown-menu:before {
    position: absolute;
    top: 0;
}

#header .navbar-inverse .navbar-nav .dropdown-menu>li>a {
    padding: 8px 15px;
    color: #fff;
}

#header .navbar-inverse .navbar-nav .dropdown-menu>li:hover>a,
#header .navbar-inverse .navbar-nav .dropdown-menu>li:focus>a,
#header .navbar-inverse .navbar-nav .dropdown-menu>li.active>a {
    background-color: var(--cyan);
    color: #fff;
}

#header .navbar-inverse .navbar-nav .dropdown-menu>li:last-child>a {
    border-radius: 0 0 3px 3px;
}

#header .navbar-inverse .navbar-nav .dropdown-menu>li.divider {
    background-color: transparent;
}

#header .navbar-inverse .navbar-collapse,
#header .navbar-inverse .navbar-form {
    border-top: 0;
    padding-bottom: 0;
    padding-right: 0px;
    width: 100%;
}

#header .navbar-nav {
    margin-top: 0px;
    gap: 20px;
}

#header .navbar-nav>li {
    margin-left: 3px;
    padding: 15px 5px;
}

#header .navbar-nav>li:first-child {
    padding: 15px 0px;
}

#header .navbar-inverse .navbar-nav .dropdown-menu {
    right: 0;
    left: auto;
    text-align: right;
}
#header .toggle-menu{
    /* position: absolute;
    left: 104px;
    top: 30px; */
    font-size: 40px;
    color: white;
}
    /* Modern Header Styles */
    .modern-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        /* background: linear-gradient(to bottom, #2d4a37, #799f50, #2d4a3700); */
        /* background: url(../img/nav-bg.png) top center/cover no-repeat; */
      
      }
  
      .modern-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }
  
      body {
       
      }
  
      /* Top Bar */
      .header-top-bar {
        color: white;
        padding: 10px 0 8px 0;
        font-size: 0.85rem;
      }
  .header-top-bar .container{
    padding: 0;
  }
      .top-bar-content {
        display: flex;
        justify-content: flex-end;
        align-items: center;
      }
  
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        display: none;
      }
  
      .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #ffffff;
        text-decoration: none;
        transition: opacity 0.3s ease;
      }
  
      .contact-item:hover {
        opacity: 0.8;
        color: white;
      }
  
      .contact-item i {
        font-size: 0.9rem;
      }
  
      /* Social & Language */
      .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
      }
  
      .social-links {
        display: flex;
        gap: 0.5rem;
      }
  
      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #222;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.85rem;
      }
  
      .social-links a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
      }
  
      .language-toggle {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        transition: all 0.3s ease;
      }
  
      .language-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white;
      }
  
      /* Main Header */
    
      .header-main-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }
  
      /* Logo */
      .logo-section {
        flex: 0 0 auto;
        margin-left: 30px;
      }
      .logo-data{
        color: #37354a;
        font-weight: bold;
      }
      .logo-data h2{
      margin-bottom: 0;
      }
      .logo-img {
        height: 80px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
      }
  
      .logo-img:hover {
        transform: scale(1.05);
      }
  
      /* Search Bar */
      .search-section {
        flex: 1;
        max-width: 350px;
        margin-right: auto;
      }
  
      .search-container {
        position: relative;
        width: 100%;
      }
  
      .search-form {
        width: 100%;
        padding: 10px 20px 10px 50px;
        border: 2px solid #e5e7eb;
        border-radius: 25px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #f9fafb;
      }
  
      .search-form:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
      }
  
      .search-btn {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #fff;
        font-size: 1.1rem;
        cursor: pointer;
        transition: color 0.3s ease;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background: var(--dark);
      }
  
      .search-btn:hover {
        color: #667eea;
      }
  
      /* CTA Button */
      .cta-section {
        flex: 0 0 auto;
      }
  
      .cta-button {
        background:#e74d3d;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 0.9rem;
      }
  
      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        color: white;
      }
  
      /* Navigation */
      .navigation-bar {
     
        padding: 0;
      }
  
     

  .header-btns{
    gap: 10px;
  }
  .header-btns a{
    color: #fff;
    height: 100%;
    align-items: center;
    padding-right: 15px;
  }

  .header-btns a:first-of-type{
  border-right: none;
  }

      .navbar-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
      }
  
      .navbar-nav .nav-item {
        position: relative;
      }
  
      .navbar-nav .nav-link {
        color: #ffffff;
        font-weight: 500;
        padding: 1rem 1.5rem;
        transition: all 0.3s ease;
        position: relative;
      }
  

    
  
      /* Dropdown */
      .dropdown-menu {
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        overflow: hidden;
      }
  
      .dropdown-item {
        padding: 0.75rem 1.5rem;
        color: #374151;
        transition: all 0.3s ease;
        border: none;
      }
  
      .dropdown-item:hover {
        background: #3398da;
        color: white;
      }
  
      /* Mobile Styles */
      @media (max-width: 991px) {
        body {
          padding-top: 120px;
        }
  
        .contact-info {
          gap: 1rem;
        }
  
        .contact-item span {
          display: none;
        }
  
        .search-section {
          margin: 0 1rem;
        }
  
        .header-main-content {
          flex-wrap: wrap;
          gap: 1rem;
        }
  
        .search-section {
          order: 3;
          flex: 1 1 100%;
          margin: 0;
        }
      }
  
      @media (max-width: 768px) {
        body {
          padding-top: 100px;
        }
  
        .header-top-bar {
          padding: 5px 0;
        }
  
        .contact-info {
          gap: 0.5rem;
        }
  
        .social-links {
          gap: 0.25rem;
        }
  
        .social-links a {
          width: 28px;
          height: 28px;
          font-size: 0.75rem;
        }
  
        .main-header {
          padding: 0.75rem 0;
        }
  
        .logo-img {
          height: 70px;
        }
  
        .cta-button {
          padding: 10px 20px;
          font-size: 0.85rem;
        }
  
        .navbar-nav .nav-link {
          padding: 0.75rem 1rem;
        }
      }
  
      @media (max-width: 576px) {
        .top-bar-content {
          flex-direction: column;
          gap: 0.5rem;
          text-align: center;
        }
  
        .contact-info {
          justify-content: center;
        }
  
        .header-actions {
          justify-content: center;
        }
      }
  
      /* Mobile Menu Toggle */
      .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        background: none;
      }
  
      .navbar-toggler:focus {
        box-shadow: none;
      }
  
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2855, 65, 81, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }
  
      /* Scroll Animation */
      .fade-in-up {
        animation: fadeInUp 0.6s ease-out;
      }
  
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
.btn-outline-white{
    color: #fff;
    border-color: #fff;

}
.header-icons{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-left: 10%;
    gap: 30px;
}
.header-icons .btn{
border-radius: 3px;
}
.header-icons .btn i{
    margin-left: 5px;
}
.social-icons a{
    color: #fff;
}
.navbar-brand {
    margin-right: 0px !important;
    float: none;
    text-align: center;
    background: #fff;
    padding: 15px;
}

.navbar-brand p {
    font-size: 20px;
}

.navbar-brand span {
    color: #ffc107 !important;
    font-size: 12px;
}


/**-End Header-**/

.logo-text {
    text-align: center;
    font-size: 17px;
    margin-bottom: 0;
    color: #fff;
}

.navbar-brand img {
    height: 130px;
    margin-bottom: 5px;
}


/**--Start MainSlider--**/

#main-slider .carousel,
#main-slider .carousel-inner {
    height: 100%;
    z-index: 5;
}

#main-slider .carousel-inner>.carousel-item {
    position: relative;
}




#main-slider .carousel .carousel-content {
    margin-top: 150px !important;
    position: absolute;
    z-index: 100;
    text-align: right;
    padding-right: 0;
}

#main-slider .carousel h2 {
    color: #fff;
    width: 85%;
    font-weight: bold;
    font-size: 3.5rem;
    margin-bottom: 20px;
}
#main-slider .carousel-caption, #main-slider .carousel-caption.d-md-block{
    right: 15% !important;
}

#main-slider .carousel .carousel-item {
    height: 100%;
}

#main-slider .carousel-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 0;
    position: relative;
}

#main-slider .carousel-item.active .item-img {
    /*animation: scale 20s;*/
    animation-fill-mode: forwards;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

#main-slider .btn-news {
    padding: 8px 20px;
    background: #2f2f2f;
    color: #fff !important;
    border-radius: 4px;
    display: inline-block;
}

#main-slider .item-img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
}

#main-slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

#main-slider .carousel .carousel-content {
    margin-top: 150px;
    text-align: center;
    right: 20%;
    width: 50%;
}

#main-slider .carousel .slide-margin {
    margin-top: 140px;
}

#main-slider .carousel h2 {
    color: #fff;
}

#main-slider .carousel .btn-slide {
    padding: 8px 20px;
    background: #0f70b7;
    color: #fff;
    border-radius: 4px;
    margin-top: 25px;
    display: inline-block;
}

#main-slider .carousel .slider-img {
    text-align: right;
    position: absolute;
}

#main-slider .carousel .carousel-item {
    background-repeat: no-repeat !important;
    background-size: cover;
    left: 0 !important;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 100%;
    display: block !important;
    min-height:100vh;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
}

#main-slider .carousel .carousel-item:first-child {
    top: auto;
    position: relative;
}

#main-slider .carousel .carousel-item.active {
    opacity: 1;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
    z-index: 1;
}

#main-slider .prev,
#main-slider .next {
    position: absolute;
    top: 40%;
    background-color: rgba(255, 255, 255, 0.575);
    color: #fff;
    display: inline-block;
    margin-top: -25px;
    height: 60px;
    line-height: 60px;
    width: 60px;
    text-align: center;
    z-index: 5;
    opacity: 1;
    display: flex;
    display: none;
}

#main-slider .prev:hover,
#main-slider .next:hover {
    background-color: #000;
}

#main-slider .prev {
    right: 0;
    left: auto;
}

#main-slider .next {
    left: 0;
    right: auto;
}

#main-slider .carousel-indicators button.active {
    width: 100px;
    height: 100px;
    margin: 0 15px 0 0;
    border: 5px solid var(--cyan);
    position: relative;
}

#main-slider .carousel-indicators button {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin-right: 0;
    margin-left: 0;
    background-clip: unset;
    border: 0;
    border-top: unset;
    border-bottom: none;
    background: none;
    border: 2px solid #fff;
    opacity: 1;
    box-sizing: border-box;
    background-size: cover;
}

#main-slider .carousel {
    direction: ltr;
}

#main-slider .active .animation.animated-item-1 {
    -webkit-animation: fadeInUp 300ms linear 300ms both;
    -moz-animation: fadeInUp 300ms linear 300ms both;
    -o-animation: fadeInUp 300ms linear 300ms both;
    -ms-animation: fadeInUp 300ms linear 300ms both;
    animation: fadeInUp 300ms linear 300ms both;
}

#main-slider .active .animation.animated-item-2 {
    -webkit-animation: fadeInUp 300ms linear 600ms both;
    -moz-animation: fadeInUp 300ms linear 600ms both;
    -o-animation: fadeInUp 300ms linear 600ms both;
    -ms-animation: fadeInUp 300ms linear 600ms both;
    animation: fadeInUp 300ms linear 600ms both;
}

#main-slider .active .animation.animated-item-3 {
    -webkit-animation: fadeInUp 300ms linear 900ms both;
    -moz-animation: fadeInUp 300ms linear 900ms both;
    -o-animation: fadeInUp 300ms linear 900ms both;
    -ms-animation: fadeInUp 300ms linear 900ms both;
    animation: fadeInUp 300ms linear 900ms both;
}

#main-slider .active .animation.animated-item-4 {
    -webkit-animation: fadeInUp 300ms linear 1200ms both;
    -moz-animation: fadeInUp 300ms linear 1200ms both;
    -o-animation: fadeInUp 300ms linear 1200ms both;
    -ms-animation: fadeInUp 300ms linear 1200ms both;
    animation: fadeInUp 300ms linear 1200ms both;
}

#main-slider .carousel-caption,
#main-slider .carousel-caption.d-md-block {
    z-index: 2;
    right: 25%;
    text-align: right;
    top: 25%;
}

#main-slider .carousel-caption h5 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}
#main-slider .carousel-caption h1{
    font-size: 35px;
}

/**--End MainSlider--**/


/**--Start RotatedIcons--**/

.rotated-icons-container {
    width: 350px;
    height: 0px;
    margin: 0;
    z-index: 10;
    position: relative;
    top: -50px;
}

.rotated-icons-container .rotated-icons {
    position: relative;
}

.rotated-icons-container .rotated-icon {
    width: 120px;
    height: 120px;
    margin: 0 15px 0 0;
    position: absolute;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0px 0px 5px #0000001f;
    background: #ffffff40;
    border: 1px dashed #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
}

.rotated-icons-container .rotate-icon-title {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0s;
    z-index: 1;
}

.rotated-icons-container .rotated-icon:not(.rotated-icon-fixed):hover>.rotate-icon-title {
    opacity: 1;
    transition: 0.5s;
    transform: rotate(-90deg);
}

.rotated-icons-container .rotated-icon:not(.rotated-icon-fixed):hover>.rotated-icon-inner i {
    display: none;
}

.rotated-icons-container .rotated-icon:not(.rotated-icon-fixed):hover {
    transform: rotate(135deg);
    transition: 0.5s;
    transform-origin: center;
}

.rotated-icons-container .rotated-icon:not(.rotated-icon-fixed):hover .rotated-icon-inner {
    transform: rotate(-135deg);
    transition: 0.5s;
    transform-origin: center;
}

.rotated-icons-container .rotate-icon-title p {
    transform: rotate(-45deg);
    margin-bottom: 0;
}

.rotated-icons-container .rotated-icon-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    flex-direction: column;
}

.rotated-icons-container .rotated-icon-fixed .rotated-icon-inner {
    gap: 5px;
}

.rotated-icons-container .rotated-icon-inner h3 {
    color: #222;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.rotated-icons-container .rotated-icon i {
    font-size: 3rem;
    text-shadow: 0px 0px 3px #00000040;
}

.rotated-icons-container .rotated-icon a {
    color: #fff;
}

.rotated-icons-container .rotated-icon:nth-child(1) {
    right: -68px;
    top: 0px;
}

.rotated-icons-container .rotated-icon:nth-child(2) {
    right: 25px;
    top: -92px;
}

.rotated-icons-container .rotated-icon:nth-child(3) {
    right: 120px;
    top: 0;
}

.rotated-icons-container .rotated-icon:nth-child(4) {
    right: 25px;
    top: 92px;
    background: #ffffff;
    color: #3398da;
}


/**--End RotatedIcons--**/


/* -- section_one -- */

.section_one {
    background: #1f1f4e;
    background-image: linear-gradient(45deg, #d500df 0%, #009688 32%, #291772 90%);
    background: #eeeeee;
    padding-bottom: 0px;
}


.section_one .item-wrap i {
    float: right;
    margin-left: 25px;
}
.section_one .col-lg-3:nth-of-type(1) .item-wrap i{
    color: #3398da;
}
.section_one .col-lg-3:nth-of-type(2) .item-wrap i{
      color: #f1c30f;
}
.section_one .col-lg-3:nth-of-type(3) .item-wrap i{
      color: #00c48a;
}
.section_one .col-lg-3:nth-of-type(4) .item-wrap i{
      color: #e74d3d;
}
.section_one .col-lg-3:nth-of-type(1) .item-wrap .item-link{
    background:#3398da;
    border-color: #3398da;
}
.section_one .col-lg-3:nth-of-type(2) .item-wrap .item-link{
    background:#f1c30f;
    border-color: #f1c30f;
}
.section_one .col-lg-3:nth-of-type(3) .item-wrap .item-link{
    background:#00c48a;
    border-color: #00c48a;
}
.section_one .col-lg-3:nth-of-type(4) .item-wrap .item-link{
    background:#e74d3d;
    border-color: #e74d3d;
}
.section_one .col-lg-3:nth-of-type(1) .item-wrap:before,
.section_one .col-lg-3:nth-of-type(1) .item-wrap:after{
    color: #222;
    border-color: #222;
}
.section_one .col-lg-3:nth-of-type(2) .item-wrap:before{
    background:#f1c30f;
    border-color: #f1c30f;
}
.section_one .col-lg-3:nth-of-type(3) .item-wrap:before{
    background:#00c48a;
    border-color: #00c48a;
}
.section_one .col-lg-3:nth-of-type(4) .item-wrap:before{
    background:#e74d3d;
    border-color: #e74d3d;
}
.section_one .content {
    width: 87%;
    margin: auto;
    height: 400px;
}

.section_one .section-header {
    height: 200px;
}

.section_one .section-footer {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section_one .section-footer .btn {
    background: none;
    border: 1px dashed #fff;
}

.section_one .section-footer p {
    color: #fff;
    width: 50%;
    margin: auto;
    margin-bottom: 30px;
}
.footer-pages{
    border-left: 1px solid #fff;
    padding-left: 20px;
}
.footer-pages:last-child{
    border-left: none;
}
.section_one .section-header h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.section_one .section-header p {
    color: #fff;
    width: 50%;
    margin: auto;
}

.section_one h2,
.section_one h2 a {
    color: #141414;
    position: relative;
}

.section_one .item-curve {
    content: "";
    display: block;
    width: 130px;
    height: 63px;
    position: absolute;
    top: 117px;
    background: #1e3978;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    z-index: -1;
    /* display: none; */
}

.section_one {
    text-align: center;
    /* background: url(../img/2.jpg) fixed; */
    padding: 10rem 0 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* background-color: #eee !important; */
}

.section_one::before {
    content: "";
    position: absolute;
    background: none;
    display: block;
    z-index: 9;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
}

.section_one .item-wrap {
    margin-bottom: 35px;
    overflow: visible;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 10px;
    /* padding: 0px 0 30px 0; */
    border: 1px solid #3c5f77;
    color: #fff;
    /* box-shadow: 0px 0px 5px #0000001f; */
    border: 1px dashed #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
        border-bottom: 5px solid #37354a;
}

.section_one a.item-link {
    background-color: var(--cyan);
    border-color: #ffffff;
    position: relative;
    top: 50px;
    border: 1px dashed #fff;
}

.section_one .col-lg-3 {
    cursor: pointer;
}

.section_one .col-lg-3:hover .item-wrap:before {
    transform: rotate(360deg);
    bottom: -100px;
    transition: 0.5s;
}

.section_one .col-lg-3:nth-child(2) .item-link {
    background: none;
    border-color: #ffffff;
}

.section_one .col-lg-3:nth-child(3) .item-link {
    background: none;
    border-color: #2196f3;
    border: 1px dashed #fff;
}

.section_one .col-lg-3:hover .item-link {
    background: var(--cyan);
    color: #fff;
    border: 1px dashed var(--cyan);
    transition: 0.5s;
    position: relative;
    top: 50px;
}

.section_one .col-lg-3:hover i {
    color: #1f1f4e !important;
    background: #fff;
}

.section_one .item-wrap:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 50px;
    border-right:1px dashed #37354a;
    bottom: -53px;
}

.section_one .item-wrap:before {
    content: "1";
    display: flex;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 5px solid #eeeeee !important;
    bottom: -115px;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 1;
    transition: 0.5s;
    background: #3398da;
    outline: 1px dashed #37354a;
    color: #ffffff !important;
}

.section_one .col-lg-3:nth-child(2) .item-wrap:before {
    content: "2";
}

.section_one .col-lg-3:nth-child(3) .item-wrap:before {
    content: "3";
}

.section_one .col-lg-3:nth-child(4) .item-wrap:before {
    content: "4";
}

.section_one .container {
    position: relative;
    top: 0;
    z-index: 10;
}

.section_one .item-wrap h2 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-top: -33px !important;
}

.section_one .item-wrap .pull-left {
    margin-right: 25px;
}

.section_one .item-wrap i {
    font-size: 40px;
    height: 110px;
    width: 110px;
    margin: 3px;
    border-radius: 100%;
    line-height: 110px;
    text-align: center;
    border: 8px solid #eeeeee;
    box-shadow: none;
    color: var(--cyan);
    transition: 500ms;
    float: left;
    top: -55px;
    position: absolute;
    z-index: 10;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_one .item-wrap h2 {
    position: relative;
    margin-top: 10px;
    /* margin-bottom: 3px; */
    top: 50px;
    color: #222;
}

.section_one .item-wrap .pull-left {
    margin-right: 25px;
}


/*--End Section One --*/


/*--Start Section Two --*/
#section_two .green-btn{
    display: none !important;
}
.section_two .sidebar-tabs{
position: relative;
}
.section_two .sidebar-tabs h2{
    position: absolute;
    top: -44px;
    background: #3398da;
    color: #fff;
    padding: 10px;
    z-index: 10;
    right: 0;
    left: 0;
    margin-bottom: 30px;
}
.section_two .sidebar-tabs ul{
    padding-top: 15px;
    }
.section_two .sidebar-tabs li{
padding: 10px 15px;
border: 1px dashed var(--dark);
margin-bottom: 10px;
}
.section_two .sidebar-tabs li a{
    color: var(--dark);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.section_two .sidebar-tabs li a i{
    color: #fff;
    width: 53px;
    height: 53px;
    border-radius: 0;
    background: var(--cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border: 3px solid #fff;
    /* box-sizing: content-box; */
    /* outline: 3px solid #f28d2b; */
    box-shadow: -3px 0px 0px 0px #f28d2b, 3px 0px 0px 0px #f28d2b;
    margin-left: 5px;
}
.section_two .sidebar-tabs li:nth-child(3n+1) i{
    background: #e74d3d;
}
.section_two .sidebar-tabs li:nth-child(3n+2) i{
    background: #37354a;
}
.section_two .sidebar-tabs li:nth-child(3n+3) i{
    background: #00c48a;
}
/* .section_two .sidebar-tabs li:nth-child(4) i{
    background: #FF9800;
} */
.section_two .tabs-data{
padding: 30px;
}
.section_two .items{
    padding: 9px;
}
.section_two .items h3{
    margin: 30px 0;
    font-size: 25px;
    color: var(--dark);
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 15px;
}
.section_two .items h3 i{
    margin-left: 5px;
}
.news-img-container{
    position: relative;
    text-align: center;
}

.news-img-container p{
  transition: 0.5s;
  margin-top: 5px;

}
/*.news-img-container:hover p,.news-block.active p{*/
/*  background:var(--green-dark);*/
/*  color: #fff;*/
/*  padding: 10px 5px;*/
/*  display: inline-block;*/
/*  border-radius: 5px;*/
/*  transition: 0.5s;*/
/*}*/
.news-block{
    position: relative;
    margin-bottom: 15px;
    text-align: center;
}
.news-block a{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--green-dark) !important;
    font-weight: bold;
    cursor:default;
}
.news-block img{
    height: 50px;
}
.news-block .more{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffffffb2;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    z-index: 2;
}
.news-block a{
    color: var(--dark);
}
.news-block span{
    color: var(--cyan);
    margin-top: 5px;
    display: inline-block;
}
.news-block span i{
    margin-left: 5px;
    color: var(--dark);
}
/*--End Section Two --*/
.single-img-crop{
    padding: 70px 0;

}
.about-us{
    
    bottom:0;
    z-index: 1;
    background: #38543a;
    color: #fff;
    left: 0;
    right: 0;
    z-index: 10;
}
.single-img-crop-img{
    background:url('../img/a.jpg') no-repeat;
    height:450px;
    width: 100%;
    border-bottom-left-radius: 100px;
    background-size: cover;
    position: relative;
}
.single-img-crop-img::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 50%;
    z-index: 1;
    background: #e74d3d;
    right: -30px;
    top: 10%;
}
.single-img-crop h3{
    font-size: 25px;
    margin-bottom: 15px;
    color: #fff;
}
.single-img-crop h3 i{
    margin-left: 5px;
    color: #3398da;
}
.single-img-crop-img::after{
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    z-index: 2;
    background: #f1c30f;
    left: -60px;
    top: 70%;
    opacity: 0.8;
}
/*--Start Middle Accordion --*/
.middle_accordion{
padding: 70px 20px;
}
.middle_accordion .img-crop{
height: 450px;
width: 100%;

}
.middle_accordion .img-crop.img-right{
    background:url('../img/typing.jpg') no-repeat;
    height: 450px;
    width: 100%;
    border-top-right-radius: 100px;
    background-size: contain;
    }
.middle_accordion .img-crop.img-left{
background:url('../img/services-2.jpg');
height: 450px;
width: 100%;
border-top-left-radius: 100px;
}
/*--End Middle Accordion --*/

/*--Start Section Three --*/

.section_three {
    padding: 6rem 0;
    background: #ffffff;
}

.section_three h2 {
    font-size: 30px;
    color: #37354a;
    text-align: center;
    margin-bottom: 55px;
}

.section_three h3,
.section_three p {
    text-align: center;
}

.section_three .row {
    margin-bottom: 20px;
}

.section_three_block {
    background: #fff;
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: auto;
    border-radius: 150px;
    outline: 2px dashed var(--dark);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.section_three_block h3 {
    color: #222;
    margin-top: 30px;
}

.section_three_block::before {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    width: 100%;
    z-index: -1;
    padding-right: 15px;
    right: -15px;
    left: -15px;
    padding-left: 15px;
    top: 20px;
    bottom: 20px;
    box-sizing: content-box;
    display: none;
}

.section_three_block::after {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    width: 100%;
    z-index: -1;
    padding-right: 30px;
    right: -30px;
    left: -30px;
    padding-left: 30px;
    top: 40px;
    bottom: 40px;
    box-sizing: content-box;
    display: none;
}

.section_three_img {
    height: 275px;
    position: relative;
    border-bottom: 15px solid var(--cyan);
    display: flex;
    justify-content: center;
    border-radius: 114%;
    overflow: hidden;
    box-sizing: content-box;
}

.section_three_img::before {
    content: "";
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.section_three_img img {
    min-height: 100%;
    min-width: auto;
    transition: 1s;
}

.section_three_link {
    width: 60px;
    height: 60px;
    z-index: 3;
    background: #00bcd4;
    border-radius: 50px;
    bottom: -30px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffffff;
    margin: 5p;
    outline: 2px dashed var(--cyan);
    margin: auto;
    box-sizing: content-box;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.5s;
}

.section_three_block:hover a {
    transform: rotate(360deg);
    transition: 0.5s;
}

.section_three_block:hover img {
    transform: scale(1.2);
    transition: 1s;
}

.section_three_link i {
    font-size: 25px;
}

.section_three_txt {
    min-height: 100px;
    word-wrap:break-word;
}

.section_three .col-lg-3:nth-child(1) .section_three_img {
    border-bottom: 15px solid #3398da;
}
.section_three .col-lg-3:nth-child(1) .section_three_link
 {

    background: #3398da;
    outline: 2px dashed #3398da;
}
.section_three .col-lg-3:nth-child(2) .section_three_img {
    border-bottom: 15px solid #f1c30f;
}
.section_three .col-lg-3:nth-child(2) .section_three_link
 {

    background: #f1c30f;
    outline: 2px dashed #f1c30f;
}
.section_three .col-lg-3:nth-child(3) .section_three_img {
    border-bottom: 15px solid #00c48a;
}
.section_three .col-lg-3:nth-child(3) .section_three_link
 {

    background: #00c48a;
    outline: 2px dashed #00c48a;
}
.section_three .col-lg-3:nth-child(2) .section_three_img {
    border-bottom: 15px solid #e74d3d;
}
.section_three .col-lg-3:nth-child(2) .section_three_link
 {

    background: #e74d3d;
    outline: 2px dashed #e74d3d;
}
/*-- End Section Three --*/



/*-- Start Gallery--*/

.gallery {
    background-size: cover;
    position: relative;
   /* background: #eee; */
   height: 300px;
}

.gallery .galary-header {
    display: flex;
    justify-content: center;
}

.gallery h2 {
    font-size: 30px;
    color: #ffffff;
    padding-right: 50px;
    margin-bottom: 30px;
}

.gallery .galary-header a {
    margin-left: 50px;
    padding: 10px 20px;
    background: none;
    border: 1px solid #fff;
}

.gallery .container {
    position: relative;
    display: flex;
    gap: 0;
}

.gallery .photo-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 1px;
}


/* .gallery .photo-container::before{
    content: "";
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(center center,
     rgba(0, 0, 0, 0.9),
     rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-size: 10px 10px;
    top: 0;
} */

.gallery .photo-container::after {
    content: "";
    position: absolute;
    background: rgba(3, 6, 44, 0.2);
    display: block;
    z-index: 2;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
}

.gallery .photo-container img {
    width: 100%;
    height: 100%;
    /* filter: sepia(25%); */
    /* filter: grayscale(50%); */
}

.gallery .photo-container:hover img {
    filter: sepia(0);
}

.gallery .filters {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 20px;
}

.gallery .filters ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.gallery .filters li {
    padding: 10px 30px;
    border: 1px solid #fff;
    list-style: none;
    cursor: pointer;
}

.gallery .filters li span {
    color: #fff;
}

.gallery .col-md-4 {
    padding: 0;
}

.gallery .gallery-more {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 50px;
    border: 3px solid #fff;
    border-radius: 100%;
    margin: 50px auto;
}

.gallery .gallery-more i {
    font-size: 25px;
}


/* .gallery #user-button {
    z-index: 1000;
    bottom: 1rem !important;
    right: 1rem !important;
    color: var(--user-button-text);
    transition: 1s 0s ease-out;
    -webkit-animation: slide 3s ease-out forwards;
    animation: slide 3s ease-out forwards;
}

@-webkit-keyframes slide {

    0%,
    50% {
        opacity: 0;
        display: block !important;
    }

    100% {
        opacity: 1;
        display: block !important;
    }
}

@keyframes slide {

    0%,
    50% {
        opacity: 0;
        display: block !important;
    }

    100% {
        opacity: 1;
        display: block !important;
    }
}

.gallery #user-button .u-card {
    border-radius: 100%;
    box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow), inset 0 0 1rem -0.75rem var(--user-button-shadow);
}

.gallery #user-button .u-main {
    cursor: pointer;
    --user-button-background: var(--user-button-main, #EC87C0);
}

.gallery #user-button .u-main img {
    height: 100%;
    width: 100%;
}

.gallery #user-button .u-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    opacity: 1;
    transition: 0s 4s;
}

.gallery #user-button .u-icons {
    position: relative;
    z-index: 950;
    transform: translate(-50%, -50%);
    background: var(--user-button-circle);
    box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
    border-radius: 100%;
    transition: 0.25s;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.gallery #user-button .u-icons a {
    color: inherit;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
}

.gallery #user-button .u-icons a div {
    padding: 0.5rem;
    transition: 0s;
}

.gallery #user-button .u-icons a[href="https://twitter.com/Osorpenke"] {
    position: relative;
}

.gallery #user-button .u-icons a[href="https://twitter.com/Osorpenke"]:before {
    content: "Middle Click";
    position: absolute;
    top: -1.5rem;
    left: 50%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    white-space: pre;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in;
    background: #fffc;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.gallery #user-button .u-icons a[href="https://twitter.com/Osorpenke"].show:before {
    opacity: 1;
    transition: 0.25s ease-out;
}

.gallery #user-button .u-icons a[href="https://twitter.com/Osorpenke"] div {
    color: #1da1f2;
}

.gallery #user-button .u-icons a[href="https://codepen.io/z-"] div {
    background: black;
    color: white;
}

.gallery #user-button .u-icons a.u-random div {
    position: relative;
    top: -1px;
    -webkit-animation: diespin 2s linear infinite;
    animation: diespin 2s linear infinite;
}

@-webkit-keyframes diespin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes diespin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gallery #user-button .u-icons a.u-random:not(:hover) div {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.gallery #user-button .u-icons>* {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--singlecolour);
    border-radius: 100%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.25s -0.05s;
}

.gallery #user-button .u-icons>*:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery #user-button .u-icons>*:hover,
.gallery #user-button .u-icons>*:focus-within {
    background: var(--hcolour);
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(1):nth-child(1),
.gallery #user-button .u-icons>*:first-child:nth-last-child(1)~*:nth-child(1) {
    left: 25%;
    top: 25%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(2):nth-child(1),
.gallery #user-button .u-icons>*:first-child:nth-last-child(2)~*:nth-child(1) {
    left: 37.5%;
    top: 18.75%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(2):nth-child(2),
.gallery #user-button .u-icons>*:first-child:nth-last-child(2)~*:nth-child(2) {
    left: 18.75%;
    top: 37.5%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(3):nth-child(1),
.gallery #user-button .u-icons>*:first-child:nth-last-child(3)~*:nth-child(1) {
    left: 50%;
    top: 15.625%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(3):nth-child(2),
.gallery #user-button .u-icons>*:first-child:nth-last-child(3)~*:nth-child(2) {
    left: 25%;
    top: 25%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(3):nth-child(3),
.gallery #user-button .u-icons>*:first-child:nth-last-child(3)~*:nth-child(3) {
    left: 15.625%;
    top: 50%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(4):nth-child(1),
.gallery #user-button .u-icons>*:first-child:nth-last-child(4)~*:nth-child(1) {
    left: 62.5%;
    top: 18.75%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(4):nth-child(2),
.gallery #user-button .u-icons>*:first-child:nth-last-child(4)~*:nth-child(2) {
    left: 37.5%;
    top: 18.75%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(4):nth-child(3),
.gallery #user-button .u-icons>*:first-child:nth-last-child(4)~*:nth-child(3) {
    left: 18.75%;
    top: 37.5%;
}

.gallery #user-button .u-icons>*:first-child:nth-last-child(4):nth-child(4),
.gallery #user-button .u-icons>*:first-child:nth-last-child(4)~*:nth-child(4) {
    left: 18.75%;
    top: 62.5%;
}

.gallery #user-button:hover .u-icons,
.gallery #user-button:focus-within .u-icons {
    width: 300% !important;
    height: 300% !important;
}

.gallery.dark {
    background: #232223;
    color: white;
}

.gallery .credit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: inherit;
}

.gallery .options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    width: calc(100% - 100px);
    height: 500px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: auto;
}

.gallery .options .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery .options .option::before {
    content: "";
    background: #02103185;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery .options .option:nth-child(1) {
    --defaultBackground: #ed5565;
}

.gallery .options .option:nth-child(2) {
    --defaultBackground: #fc6e51;
}

.gallery .options .option:nth-child(3) {
    --defaultBackground: #ffce54;
}

.gallery .options .option:nth-child(4) {
    --defaultBackground: #2ecc71;
}

.gallery .options .option:nth-child(5) {
    --defaultBackground: #5d9cec;
}

.gallery .options .option:nth-child(6) {
    --defaultBackground: #ac92ec;
}

.gallery .options .option.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: auto 100%;
    background-size: Cover !important;
}

.gallery .options .option.active .shadow {
    box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.gallery .options .option.active .label {
    bottom: 20px;
    left: 20px;
}

.gallery .options .option.active .label .info>div {
    left: 0px;
    opacity: 1;
}

.gallery .options .option:not(.active) {
    flex-grow: 1;
    border-radius: 50px;
    background-size: Cover !important;
}

.gallery .options .option:not(.active) .shadow {
    bottom: -40px;
    box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.gallery .options .option:not(.active) .label {
    bottom: 10px;
    left: 10px;
}

.gallery .options .option:not(.active) .label .info>div {
    left: 20px;
    opacity: 0;
}

.gallery .options .option .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery .options .option .label {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    justify-content: space-between;
}

.gallery .options .option .label .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #00bcd4;
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 20px;
    right: 14px;
}

.gallery .options .option:nth-child(2) .label .icon {
    background-color: var(--cyan);
}

.gallery .options .option:nth-child(3) .label .icon {
    background-color: #ffce54;
}

.gallery .options .option:nth-child(4) .label .icon {
    background-color: #4caf50;
}

.gallery .options .option:nth-child(5) .label .icon {
    background-color: #607d8b;
}

.gallery .options .option .label .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
    z-index: 100;
    align-self: left;
}

.gallery .options .option .label .info>div {
    position: relative;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.gallery .options .option .label .info .main {
    font-weight: bold;
    font-size: 1.2rem;
}

.gallery .options .option .label .info .sub {
    transition-delay: 0.1s;
}
 */


/*-- End Gallery--*/


/*-- Start Section Six--*/

.section_six .inner-data {
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.section_six {
    background: #f5f5f5;
}

.section_six h2 {
    color: var(--dark);
    font-size: 30px;
    margin-bottom: 15px;
}

.section_six h3 {
    color: var(--cyan);
    font-size: 24px;
}

.section_six p {
    color: var(--dark);
    line-height: 35px;
}

.section_six-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section_six-content ul {
    list-style: none;
    padding-right: 0;
    padding-left: 0;
}

.section_six-content ul a {
    color: #fff;
}

.section_six-content ul li {
    margin-bottom: 10px;
    cursor: pointer;
    perspective: 1000px;
}

.section_six-content ul li .list-inner {
    border: 1px solid var(--dark);
    background: #fff;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    width: 100%;
    transition: 0.5s;
}

.section_six-content ul li.active .list-inner {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    width: 100%;
    transition: 0.5s;
}

.section_six-content ul li.active i {
    color: var(--cyan);
    transition: 0.5s;
}

.section_six-content ul li:hover {
    transition: 0.5s;
    color: #fff;
}

.section_six-content ul li:hover .list-inner {
    transform: rotateX(45deg);
}

.section_six-content ul li span {
    color: var(--dark);
}

.section_six-content i {
    width: 70px;
    height: 70px;
    border: 1px solid var(--cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--dark);
    margin-left: 10px;
    transition: 0.5s;
}
.section_six-content ul li:nth-child(4n+1) i{
    border-color: #e74d3d;
    color: #e74d3d;
}
.section_six-content ul li:nth-child(4n+2) i{
    border-color: #f1c30f;
    color: #f1c30f;
}
.section_six-content ul li:nth-child(4n+3) i{
    border-color: #37354a;
    color: #37354a;
}
.section_six-content ul li:nth-child(4n+4) i{
    border-color: #00c48a;
    color: #00c48a;
}
.section_six-content .list-content-outer {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section_six-content .list-content {
    position: absolute;
    transition: 0.5;
    top: 100%;
    transition: 1s;
    opacity: 0;
}

.section_six-content .list-content.active {
    display: block;
    transition: 1s;
    top: 0;
    opacity: 1;
}

.section_six-content .list-content .btn {
    background: var(--cyan);
    border-color: var(--cyan);
}

.section_six-content .row {
    width: 100%;
}

.section_six-content .title-widget {
    background: url(../img/c.jpg) no-repeat fixed;
    background-size: contains;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: auto 100%;
    background-position: right;
}

.section_six-content .title-widget::before {
    content: "";
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
    top: 0;
}

.section_six-content .title-widget::after {
    content: "";
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
    background: #081940a6;
}

.section_six-content .title {
    padding: 1rem 3rem;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    position: absolute;
    z-index: 10;
}

.section_six-content .title b {
    color: #fff;
}


/*-- End Section Six --*/



/*--Start Section Eight--*/

.section_eight {
    background: url(../img/video-bg.jpg) fixed;
    position: relative;
}

.section_eight:before {
    position: absolute;
    background: #ffffff;
    content: "";
    opacity: 1;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 50px 0;
}

.section_eight_content {
    position: relative;
    padding: 0px;
    border-radius: 15px;
    min-height: 100vh;
    background: url(../images/desk-office-computer-imac.jpg) no-repeat center center/cover transparent;
    position: relative;
    max-width: 100%;
}

.section_eight_content .row {
    margin: 0;
}

.section_eight .inner-data {
    padding: 6rem 30px 6rem 15%;
}

.section_eight .inner-data .col-lg-6 {
    padding-left: 0;
}

.section_eight .overlay {
    background: #2c3e50;
    padding: 50px 0;
    position: static;
}

.section_eight .col-md-8 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section_eight .link {
    margin-bottom: 20px;
}

.section_eight .link a {
    color: #232323;
    background: #ffffff61;
    text-align: center;
    display: block;
    padding: 0;
    display: flex;
    gap: 5px;
    border-radius: 30px;
    border: 1px dashed #1e3978;
    flex-flow: row;
    align-items: center;
}

.section_eight .link a i {
    width: 40px;
    height: 40px;
    background: var(--cyan);
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 35px;
    margin: 3px;
    color: #fff;
}

.section_eight .inner-data .col-md-12:nth-child(2) .link i {
    background: #03a9f4;
}

.section_eight .inner-data .col-md-12:nth-child(3) .link i {
    background: #ff9800;
}

.section_eight .inner-data .col-md-12:nth-child(4) .link i {
    background: #f44336;
}

.section_eight .inner-data .col-md-12:nth-child(5) .link i {
    background: #2c3e50;
}

.section_eight .inner-data .col-md-12:nth-child(6) .link i {
    background: #4caf50;
}

.section_eight .link a:hover {
    color: #222;
    background: #fff;
}

.section_eight .overflowhide {
    overflow: hidden;
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/typing.jpg) no-repeat fixed;
    background-size: contains;
    background-size: cover;
    background-position: left;
    background-size: auto 100%;
}

.section_eight .overflowhide:before {
    content: "";
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.9), rgba(256, 256, 256, 0.9) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
    top: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

.section_eight .overflowhide:after {
    content: "";
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
    background: #081940a6;
}

.section_eight .component {
    width: 70%;
    background: #fff;
    position: relative;
    z-index: 10;
    padding: 3rem;
}

.section_eight .component img {
    width: 100%;
    margin-bottom: 10px;
}

.section_eight .section-title {
    font-size: 30px;
}

.section_eight .section-description {
    color: var(--cyan);
    font-size: 24px;
    margin: 15px 0;
}


/*--End Section Eight--*/


/*--Start Footer--*/
footer {
    position: relative;
    padding-top: 0px;
    margin-top: 100px;
    z-index: 1;
    background: url(../img/footer-bg.webp) fixed !important;
}
footer::before {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    content: "";
    background: #09071b;
    opacity: 0.94;
    z-index: -1;
}
footer .footer-main {
    background: var(--green-dark);
}
footer .footer-bottom {
    background:var(--gray-dark);
    padding: 15px !important;
}
#footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

#footer .footer-social a {
    color: #1e3978;
    width: 50px;
    height: 50px;
    background: white;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .footer-social a i {
    font-size: 20px;
}

#footer .footer-social a.facebook {
    background: #284b9d;
}

#footer .footer-social a.twitter {
    background: #03a9f4;
}

#footer .footer-social a.video {
    background: var(--cyan);
}

#footer .footer-social a.linkedin {
    background: #4caf50;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-contact-icons li {
    margin-bottom: 0;
}

#footer ul li {
    display: block;
    padding: 5px 0;
}

#footer ul li i {
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 3px;
}

#footer ul li:nth-child(1) i {
    color: #ffffff;
    border: 1px solid #fffffb;
}

#footer ul li:nth-child(2) i {
    color: #ffffff;
    border: 1px solid #ffffff;
}

#footer ul li:nth-child(3) i {
    color: #ffffff;
    border: 1px solid #ffffff;
}

#footer ul li a {
    color: #fff;
}

#footer ul li a:hover {
    color: #c52d2f;
}

#footer .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #ffffff;
    vertical-align: middle;
    background-color: #ffffff26;
    border: 1px solid #cccccc4d;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#footer .form-control::placeholder {
    color: #ffffff;
}

#footer>.footer-corner>.container {
    padding-top: 30px;
    border-top: 7px solid #d9534f;
}

#footer p {
    color: #fff;
    line-height: 30px;
}

#footer .about {
    text-align: center;
    padding: 50px 0px;
}

#footer .social-icons {
    display: flex;
    flex-flow: row;
}

#footer .social-icons li {
    margin-right: 10px;
}

#footer .footer-social a {
    color: #fff;
}

#footer .col-xs-6 {
    padding-right: 15px;
    padding-left: 15px;
}

#footer .footer-heading {
    font-size: 14px;
    margin-bottom: 30px;
}

#footer h2 {
    color: #fff;
    text-align: right;
}

#footer .footer-links li {
    color: rgb(255, 255, 255);
    display: inline-block;
    background: #0000005c;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

#footer .footer-top {
    padding: 4rem 0;
}

#footer .footer-border {
    background: #00bcd4;
    height: 50px;
    width: 50%;
}

#footer ul li {
    font-size: 14px;
    color: rgb(255, 255, 255);
}

#footer .fa-caret-right {
    color: #fff;
}

#footer li {
    margin-bottom: 10px;
}

#footer li i {
    color: #fff;
    min-width: 20px;
}

#footer .list-unstyled {
    padding-right: 0px;
}

#footer .counter {
    width: 200px;
    text-align: center;
    color: #fff;
    margin-bottom: 27px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

#footer .link {
    margin: 5px;
    padding: 5px;
    overflow: hidden;
    text-align: right;
}

#footer .link a {
    color: #e4ff01;
}

#footer hr {
    margin: 20px 0;
}

footer input[type="submit"] {
    background: var(--cyan);
    border: 1px solid var(--cyan);
    display: block;
    margin-top: 10px;
    color: #fff;
    width: 100%;
}

footer .footer-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
}
footer .footer-bottom a {
    color: #fff;
    font-size: 14px;
}
footer .footer-bottom a span {
    color: #fff;
}

footer .footer-bottom a:hover {
    color: var(--green-light);
}

footer .footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-bottom ul>li {
    display: inline-block;
    margin-left: 15px;
}

footer .footer-bottom .text-center {
    font-size: 14px !important;
    color: #5c84ae;
}

#footer .footer-bottom .footer-icons {
    display: flex;
    justify-content: flex-end;
}

#footer .footer-bottom .footer-icons p {
    color: #5c84ae !important;
    margin-bottom: 0;
}

#footer .footer-bottom .footer-icons a {
    color: #5c84ae !important;
    display: inline-block;
    padding: 10px;
    width: 35px;
    height: 35px;
    line-height: 0px;
    border-radius: 50%;
    margin-right: 10px;
}

#footer .footer-bottom .text-center {
    margin-top: 6px;
    font-size: 16px;
}

#footer h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

#footer h3 i {
    color: #ffffff;
    display: none;
    margin-left: 5px;
}

#footer .footer-gallery img {
    width: 100%;
    height: 102px;
    padding: 2px;
}

#footer .footer-gallery .col-4.p-1 {
    padding: 0 !important;
}

#footer .footer-brand {
    /* background: #0000002e; */
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #ffffff14;
}

#footer .footer-brand img {
    margin-bottom: 10px;
}

#footer .col-md-1 {
    padding-right: 0;
}


/*--End Footer--*/


/*--Start Page--*/

.page {
    background: #fff;
}

.page .page-title {
    background: url(../img/page-title-bg.jpg) fixed;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 30px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

.page .page-title h3 {
    color: #fff;
    font-size: 30px;
}

.page .page-title::before {
    content: "";
    background: rgba(3, 6, 44, 0.7);
    position: absolute;
    display: block;
    z-index: 8;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
}

.page .page-title .container {
    background: none;
    padding: 10px;
    z-index: 10;
    position: absolute;
    display: flex;
    flex-direction: column;
}

.page .page-title .navbar-brand {
    position: static;
    margin-bottom: 30px;
}

.page .page-title .navbar-brand span {
    display: block;
}

.page .page-content .container {
    padding: 50px 10px;
}

.slider-inner-container{
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}
.slider-inner-container .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding:50px 0 0 0;
    height: 100%;
}
/*--End Page--*/

/* -- Achivement-Fact -- */
.our-achivement-fact {
    margin-top: 0;
    padding: 0px 0;
    background-color: var(--green-light);
}
.our-achivement-fact .section-title{
    padding-bottom: 0 !important;
    padding-top: 50px !important;
    margin-bottom:0 !important;
}
}
.funfact-wrapper {
  position: relative;
  z-index: 1;
}

.funfact-wrapper.bottom::before {
  bottom: 0;
  top: auto;
}

.funfact-wrapper.no-bg::before {
  display: none;
}

.funfact-wrapper::before {
  position: absolute;
  height: 50%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #211e3b;
  content: "";
}

.funfact-wrapper .funfact-content-grid {
  background-color: #086ad7;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.funfact-content-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 7px;
}

.funfact-content-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.funfact-content-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.funfact-content-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.funfact-content-grid > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

.single-funfact-item {
  padding: 50px 30px;
  margin: 10px;
}
.single-funfact-item h3{
    color: #fff;
}
.section-title{
    text-align: center;
padding: 30px 0px;
font-size: 30px;
font-weight: bold;
    color: var(--green-dark);
        display: flex;
    justify-content: center;
    flex-direction: row-reverse;
        gap: 5px;

margin-bottom:30px;
}
.section-title-white{
    color: #fff;
    text-transform: capitalize;
}
.green-btn{
    background: var(--green-dark);
    border: 1px solid var(--green-dark);
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    display: inline-block !important;
    width: 150px;
    margin: 20px auto;
    text-align: center;
}

.funfact-content-grid .single-funfact-item .icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 20px;
}

.funfact-content-grid .single-funfact-item h3 {
  font-weight: 500;
  font-size: 55px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.funfact-content-grid .single-funfact-item h3::before {
  position: absolute;
  content: "+";
  right: -20px;
  top: -15px;
  font-size: 30px;
  font-weight: 400;
}

.funfact-content-grid .single-funfact-item p {
  margin-top: 5px;
}

.funfact-box-bg {
  width: 100%;
  background-color: #086ad7;
  border-radius: 7px;
  margin: 0px auto;
  padding: 80px 0px;
}

.fun-fact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-gap: 30px;
  text-align: center;
}

.fun-fact-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.fun-fact-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.fun-fact-grid .single-funfact-item {
  background-color: #fff;
  padding: 40px 30px 30px;
  -webkit-clip-path: polygon(13% 0, 100% 0, 100% 100%, 52% 100%, 0 100%, 0 14%);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 52% 100%, 0 100%, 0 14%);
}

.fun-fact-grid .single-funfact-item .icon {
  font-size: 55px;
  margin-bottom: 10px;
  color: #086ad7;
}

.fun-fact-grid .single-funfact-item h3 {
  font-size: 55px;
  line-height: 1;
}


.single-funfact-item {
  color: #ffffff;
}

.menu{
    position: fixed;
    right: -100%;
    left: auto;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: auto;
    height: 100vh;
    background: #071026d6;
    transition: 1s;
}
.view{
    right: 0;
    transition: 1s;
}
.menu ul{
    padding: 15px;
}
.menu a{
    color: #fff;
    padding: 10px 10px;
    display: block;
    transition: 0.5s;

}
.menu a:hover{
    color: var(--orange);
    transition: 0.5s;
}

   /* الأزرار */
   .controls {
    text-align: center;
    margin-bottom: 20px;
  }

  .controls button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    background:none;
    cursor: pointer;
    transition: 0.3s;
  }
  .images-gallery{
      padding: 70px 0;
  }
  .images-gallery h2{
      text-align: center;
      margin-bottom: 30px;
  }
.images-gallery .controls button:nth-child(4n+1):not(.active) {
    border:1px solid #007bff !important;
    color: #007bff;

}
.images-gallery .controls button:nth-child(4n+2):not(.active) {
    border:1px solid #e74d3d !important;
    color: #e74d3d;

}
.images-gallery .controls button:nth-child(4n+3):not(.active) {
      border:1px solid #f1c30f !important;
      color: #f1c30f;
}
.images-gallery .controls button:nth-child(4n+4):not(.active) {
      border:1px solid #00c48a !important;
      color: #00c48a;
}
  .controls button.active,
  .controls button:hover {
    background: #37354a;
    color: #fff;
  }
.owl-stage-outer{
    direction: ltr;
}
  /* الشبكة */
  /* .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    min-height: 250px;
  }
.owl-carousel{
    padding-top: 70px;
}
  .mix {
    position: relative;
    height: 180px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    display: flex;
        transition: 0.5s;

  }
  .mix:hover{
    height: 250px;
            transition: 0.5s;
            top: -35px;

  }
 .mix:hover .overlay{
    width: 50%;
    transition: 0.5s;
 }
  .mix:hover .img{
    width: 50%;
    transition: 0.5s;
 }
  .mix img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
  }


  .overlay {
    bottom: 0;
    width: 0;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
            transition: 0.5s;
            overflow: hidden;

  }

  .overlay h4 {
    margin: 0 0 10px;
    color: #fff;
  }

  .overlay button {
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
  }

  .overlay button:hover {
    background: #0056b3;
  } */

 .gallery-carousel{
     position: relative;
 }
.gallery-carousel .item{
    padding:10px;
}

/* الكارد */
.gallery-card{
    display:flex;
    align-items:center;
    border-radius:18px;
    overflow:hidden;
    background:#f5f5f5;
     transition:transform .4s ease;
     flex-direction: row-reverse;
}
.gallery-card .img-fluid{
    height: 300px;
}
.gallery-card h4,.gallery-card p{
    color: var(--green-light);
    font-weight: bold;
}

/* الصورة */
.card-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
}

/* النص */
.card-content{
    padding:20px;
    display:none;
}

/* الكاردات الجانبية */
.owl-item .gallery-card{
    display:block;
}

/* الصورة تاخد الكارد كله */
.owl-item .card-image img{
    width:100%;
    height:260px;
}

/* الكارد الأوسط */
.owl-item.center .gallery-card{
    display:flex;
}

/* الصورة في الكارد الأوسط */
.owl-item.center .card-image{
    width:55%;
}

/* النص يظهر */
.owl-item.center .card-content{
    width:45%;
    display:block;
    text-align: right;
}

/* زر */
.arrow-btn{
    width:40px;
    height:40px;
    background:#3a7f5c;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-radius:8px;
    margin-top:10px;
    transform: rotate(180deg);
}

/* كل العناصر */
.gallery-carousel .owl-item{
    transition:all .4s ease;
}

/* العناصر الجانبية */
.gallery-carousel .owl-item .gallery-card{
    transform:scale(.9);
    opacity:.8;
}

/* العنصر الأوسط */
.gallery-carousel .owl-item.center .gallery-card{
    transform:scale(1.1);
    opacity:1;
    z-index:2;
}
  /* Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    margin-top: 4rem;
  }
  
  .footer-main {
    padding: 3rem 0 2rem;
    position: relative;
  }
  
  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  }
  
  /* Footer Sections */
  .footer-section {
    height: 100%;
  }
  
  .footer-logo-section {
    margin-bottom: 1.5rem;
  }
  
  .footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
  }
  
  .footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
  }
  
  .footer-description {
    margin-bottom: 2rem;
  }
  
  .footer-description p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Titles */
  .footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .footer-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
.section-contact img{
    width: 100%;
}
  
  /* Contact Links */
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ecf0f1;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .contact-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3398da;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  footer .contact-info {
    display: flex;
    flex-direction: column;
  }
  
  .contact-label {
    font-size: 0.85rem;
    color: #bdc3c7;
    font-weight: 500;
  }
  
  .contact-value {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .whatsapp-link:hover .contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }
  
  /* Footer Links */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
  }
  
  .footer-links a:hover {
    color: #fff;
    transform: translateX(-3px);
  }
  
  .footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
  }
  
  .footer-links a:hover i {
    transform: translateX(-2px);
  }
  
  .view-all-link {
    color: #667eea !important;
    font-weight: 600;
  }
  
  .view-all-link:hover {
    color: #764ba2 !important;
  }
  
  /* Recent Posts */
  .recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .recent-post-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .recent-post-content {
    flex: 1;
  }
  
  .recent-post-title {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .recent-post-title:hover {
    color: #667eea;
  }
  
  .recent-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #95a5a6;
    font-size: 0.8rem;
  }
  
  .recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Social Links */
  .social-section {
    margin-bottom: 2rem;
  }
  
  .social-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #ecf0f1;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 0.85rem;
  }
  
  .social-link:hover {
    color: #fff;
    transform: translateY(-2px);
  }
  
  .social-link.facebook:hover { background: #3b5998; }
  .social-link.twitter:hover { background: #1da1f2; }
  .social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
  .social-link.linkedin:hover { background: #0077b5; }
  .social-link.youtube:hover { background: #ff0000; }
  .social-link.telegram:hover { background: #0088cc; }
  
  /* Newsletter */
  .newsletter-section {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px;
        border-radius: 8px;
  }
  
  .newsletter-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .newsletter-form .input-group {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .newsletter-input {
    border: none;
    background: #fff;
    color: #ddd;
    padding: 0.75rem 1rem;
    border-radius: 5px !important;
    height: 60px;
  }
  
  .newsletter-input::placeholder {
    color: #bdc3c7;
  }
  
  .newsletter-input:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
  }
  
  .newsletter-btn {
    border: none;
    color: var(--green-dark) !important;
    transition: all 0.3s ease;
    background: #fffce2;
    transform: rotate(180deg);
    position: relative;
    right: -3px;
    margin-left: -3px;
  }
    .newsletter-btn i{
    color: var(--green-dark) !important;
  }
  
  .newsletter-btn:hover {
    background: var(--green-dark);
    color: #fff;
  }
  .newsletter-btn:hover i{
    color: #fff !important;
  }
  /* Footer Bottom */
  .footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .copyright p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    display: none;
  }
  
  .footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #667eea;
  }
  
  .divider {
    color: #fff;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #3398da;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
  .contct-form-container{
    background: #ffffff;
    border-radius: 30px;
    position: relative;
    top:-100px;
    padding: 30px;
  }
  .contact-us-data{
    padding: 30px;
  }
  .contact-us-data h2{
    font-size: 40px;
  }
  .category-tab img,.service-category-tab img{
    height: 100px;
  }
  .category-tab,.service-category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
    color: var(--green-dark);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    border-radius: 15px;
    text-align: center;
    height: 220px;
  }
  .section_two .col-md-4{
      border-left: 5px solid #eee !important;
  }
  .section_two .col-md-4:last-of-type{
border-left: none;
  }
  .category-tab:hover, .category-tab.active{
    transition: 0.5s;

    background: linear-gradient(to bottom, #8BE28E, #ffffff);
    border-left: none !important;
    box-shadow: 0px 0px 5px #578559;
  }
   .page-header{
    min-height: 800px;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 30px;
    position: relative;
    background-size: cover !important;
   }
   .page-header h1{
       color: #fff;
       text-align: right;
       margin-right: 3%;
       margin-left: a;
       position: relative;
       z-index: 10;

   }

   .lang-btn{
    background: var(--green-light);
    padding: 5px 10px;
    border-radius: 3px;
   }
   
   .btn-quote{
    background: var(--gray-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
   }
   
.newsletter-form p{
    color: #fff;
    margin: 10px 0;
    opacity: 0.5;
}
.category-about h3{
    font-size: 1.5rem;
    color: var(--green-light) !important;
    font-weight: bold;
    margin-bottom: 30px;
}
.category-about img{
    border-radius: 10%;
}
.vision-mession h3{
    font-size: 1.5rem;
    color: var(--green-light) !important;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}
.nav-tabs{
    border-bottom: none;
    margin-left: 50%;
    position: relative;
    bottom: -70px;
    padding-left: 15px;
}
.nav-tabs .nav-link{
    border: none;
    color: #222;
    text-transform: uppercase;
}
.nav-tabs .nav-link.active{
 background: var(--green-light);
 color: #fff;
 border-radius: 5px;
}
  /* Responsive Design */
  @media (max-width: 992px) {
    .social-links-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .footer-main {
      padding: 2rem 0 1.5rem;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .footer-bottom-links {
      justify-content: center;
    }
    
    .social-links-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-link {
      padding: 0.5rem;
    }
    
    .contact-icon {
      width: 35px;
      height: 35px;
    }
  }
  
  @media (max-width: 576px) {
    .recent-post-item {
      flex-direction: column;
    }
    
    .recent-post-thumb {
      width: 100%;
      height: 120px;
    }
    
    .back-to-top {
      bottom: 1rem;
      left: 1rem;
      width: 45px;
      height: 45px;
    }
  }
  .gallery-page h4{
    font-size: 24px;
    color: var(--green-light);
    font-weight: bold;
  }


    :root {
      --navy: #1a2e3b;
      --teal: #2d7a6e;
      --rose: #e05c6a;
      --bg: #f5f6f4;
      --card-bg: #ffffff;
      --muted: #7a8794;
      --border: #e4e8ec;
    }

 

    /* ── HERO ── */
    .jobs.hero {
      text-align: center;
      padding: 64px 20px 48px;
      background: #fff;
    }
    .jobs.hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: var(--green-dark);
      letter-spacing: -1px;
    }

    /* ── BENEFITS ── */
    .jobs.benefits {
      background: #fff;
      padding: 72px 0 80px;
    }
    .jobs.benefits-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .benefits-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 18px;
    }
    .benefits-sub {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.7;
    }

    .benefit-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 22px;
      height: 100%;
      transition: transform .25s, box-shadow .25s;
    }
    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(26,46,59,.08);
    }
    .benefit-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 1.4rem;
    }
    .benefit-icon img{
        width: 80% !important;
    }
    .icon-blue  { background: #e8f4f8; }
    .icon-green { background: #e6f5f2; }
    .icon-pink  { background: #fdeef0; }
    .icon-gold  { background: #fef8ec; }

    .benefit-card h6 {
      font-weight: 600;
      font-size: .95rem;
      margin-bottom: 8px;
      color: var(--navy);
    }
    .benefit-card p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.65;
      margin: 0;
    }

    /* ── OPENINGS ── */
    .openings {
      background: #eef0ef;
      padding: 80px 0 100px;
    }
    .section-eyebrow {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    .openings-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--navy);
      margin-bottom: 12px;
    }
    .openings-sub {
      color: var(--muted);
      font-size: .88rem;
      max-width: 520px;
      margin: 0 auto 48px;
    }

    /* ── TABS ── */
    .jobs .nav-tabs {
      border: none;
      flex-direction: column;
      gap: 4px;
      margin-left: 0 !important;
    }
    .jobs .nav-tabs .nav-link {
      border: none;
      border-radius: 8px;
      color: var(--muted);
      font-size: .82rem;
      font-weight: 500;
      padding: 9px 18px;
      text-align: left;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }
    .jobs .nav-tabs .nav-link:hover {
      background: #fff;
      color: var(--navy);
    }
    .jobs .nav-tabs .nav-link.active {
      background: var(--rose);
      color: #fff;
      font-weight: 600;
    }
    .tabs-sidebar {
      min-width: 160px;
    }

    /* ── JOB ROWS ── */
    .job-row {
      background: #fff;
      border-radius: 10px;
      padding: 18px 22px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: box-shadow .2s;
      cursor: pointer;
    }
    .job-row:hover { box-shadow: 0 8px 24px rgba(26,46,59,.1); }
    .job-title { 
        width: 30%;
        font-weight: 600; font-size: .95rem; color: var(--navy);
     }
    .job-meta {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .meta-item { text-align: left; }
    .meta-label {
      font-size: .66rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 3px;
    }
    .meta-value { font-size: .88rem; font-weight: 500; color: var(--navy); }
    .job-arrow {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      flex-shrink: 0;
      transition: background .4s, color .4s, border-color .4s;
    }
    .job-row:hover .job-arrow {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
    }

    @media (max-width: 768px) {
      .job-meta { gap: 14px; }
      .meta-label { display: none; }
      .job-row { flex-wrap: wrap; }
      .nav-tabs { flex-direction: row; flex-wrap: wrap; gap: 6px; }
      .tabs-sidebar { min-width: unset; }
    }



/* ======= carousel main ======= */
.custom-carousel .carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* ======= الخلفية ======= */
.bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
/*transform: scale(1) rotate(0deg);*/
    /*opacity: 0.9;*/
    /*transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1), opacity 3s ease;*/
    /*will-change: transform, opacity;*/
}

/* overlay */

/* ======= دخول السلايد ======= */
/*.carousel-item.active .bg-slide {*/
/*    transform: scale(1.15) rotate(2deg);*/
/*    opacity: 1;*/
/*}*/

/* ======= خروج السلايد ======= */
/*.carousel-item.carousel-item-start .bg-slide,*/
/*.carousel-item.carousel-item-end .bg-slide {*/
/*    transform: scale(1) rotate(0deg);*/
/*    opacity: 0.85;*/
/*}*/


/* ======= النصوص ======= */
.carousel-caption {
    bottom: 20%;
    text-align: center;
}

.carousel-caption .title,
.carousel-caption .desc,
.carousel-caption .btn-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
    will-change: opacity, transform;
}

.carousel-item.active .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.carousel-item.active .desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.carousel-item.active .btn-anim {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* خروج النص */
.carousel-item.carousel-item-start .title,
.carousel-item.carousel-item-end .title,
.carousel-item.carousel-item-start .desc,
.carousel-item.carousel-item-end .desc,
.carousel-item.carousel-item-start .btn-anim,
.carousel-item.carousel-item-end .btn-anim {
    opacity: 0;
    transform: translateY(40px);
}

/* ======= تحسين شكل النص ======= */
.carousel-caption h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
}

.carousel-caption p {
    font-size: 16px;
    color: #fff;
}
.db-page > .container{
    max-width: 80% !important  ;
}
.images-gallery2{
    position: relative;
}
.images-gallery2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 224px;
    background: #f5f5f5;
}
.gallery-carousel2 .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* يخلي الكليك على الأزرار نفسها */
}

.gallery-carousel2 .owl-nav button {
    background: #52A656 !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* تموضع الزرين */
.gallery-carousel2 .owl-nav .owl-prev {
    position: absolute;
    left: -70px;
    
}

.gallery-carousel2 .owl-nav .owl-next {
    position: absolute;
    right: -70px;
}
.gallery-carousel2 .owl-nav button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}


/* تموضع الزرين */
.gallery-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -70px;
    top: 110px;
    
}

.gallery-carousel .owl-nav .owl-next {
    position: absolute;
    right: -70px;
    top: 110px;
}
.gallery-carousel .owl-nav button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.gallery-carousel .owl-nav button {
    background: #52A656 !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.navbar .dropdown-menu li{
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.navbar .dropdown-menu li:last-child{
    border-bottom: none;
}
/* خلي الـ dropdown يظهر بالـ hover */
.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding-right: 15px;
}

.navbar .dropdown-menu a:hover{
    color: #fad35e;
}
/* عند الـ hover */
.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}