@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

:root {
 --main-text: #14573a;
 --main-bg: #1b8354;
 --second-text: #222a26;
 --paragraoh-text: #313842;
 --container-width: 1100px;
 --bg-box: #f2fcf8;
}

* {
 padding: 0;
 margin: 0;
 text-decoration: none;
 border: none;
 box-sizing: border-box;
}

body {
 background-color: #fff !important;
 background: url(../img/patternBackground.png) top center no-repeat;
 font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.container {
 width: 100%;
 max-width: var(--container-width);
 background: url('../img/main_border.png') top center no-repeat;
 margin: 2rem auto;
 padding: 2rem 2rem;
 position: relative;
}

h2.main-title {
 display: block;
 width: 250px;
 background-color: #1b8354;
 position: absolute;
 top: -25px;
 right: 0;
 left: 0;
 margin: 0 auto;
 filter: drop-shadow(4px 0px 24px #1b835463);
 color: #fff;
 padding: 0.7rem 1rem;
 font-weight: 500;
 font-size: 1.1rem;
 border-radius: 8px;
 text-align: center;
}

.conatiner-flex {
 display: flex;
 padding: 5rem 4rem 2rem;
 column-gap: 2rem;
 max-width: var(--container-width);
}
.right {
 flex: 1 1 45%;
}
.vedio {
 flex: 1 1 55%;
}

.vision,
.message,
.values,
.properties {
 margin-bottom: 2rem;
}

.vision h2,
.message h2,
.values h2,
.properties h2 {
 color: #005c20;
 font-size: 1.2rem;
}

.vision h2,
.message ol,
.values ol,
.properties ol {
 padding: 0;
 margin: 0;
}
.vision ol li,
.message ol li,
.values ol li,
.properties ol li {
 list-style-position: inside;
}

.vedio {
 display: flex;
 justify-content: center;
 align-items: center;
}

.player {
 h2 {
  color: var(--main-bg);
  text-align: center;
 }
 p {
  color: var(--second-text);
  text-align: center;
  line-height: 1.6;
 }

 iframe {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #dff6ec;
  filter: drop-shadow(4px 4px 8px #1b835436);
 }
}

.firstStep {
 background: none var(--bg-box);
 padding-bottom: 1rem;
 margin-bottom: 1rem;
 position: relative;
 .container {
  background: none;
  h3 {
   color: var(--main-bg);
   font-size: 1.3rem;
   margin-bottom: 1rem;
  }
  p {
   color: var(--paragraoh-text);
   line-height: 1.7;
  }
  img {
   float: left;
  }
 }
}
.firstStep::before {
 width: 100%;
 height: 80px;
 content: '';
 display: block;
 background: url(../img/circle.png) top center no-repeat;
 position: absolute;
 top: -79px;

 right: 0;
 left: 0;
 margin: 0 auto;
 z-index: 55;
}

.textContent {
 max-width: var(--container-width);
 margin: 0 auto;
 padding: 2rem 0;
 display: flex;
 column-gap: 1rem;
 justify-self: center;
 align-items: center;

 img {
  width: 100%;
 }

 div.content {
  h2 {
   color: var(--main-bg);
   border-bottom: 1px solid #cfe6d8;
   margin-bottom: 0.5rem;
   padding-bottom: 0.5rem;
  }

  p {
   columns: var(--paragraoh-text);
   line-height: 1.6;
  }
 }
}
.reverse {
 flex-direction: row-reverse;
}

.tabs-container {
 max-width: var(--container-width);
 margin: 0 auto 3rem;
 overflow: hidden;
 display: flex;
 gap: 1rem;
}

/* Tab Navigation List */
.tabs-nav {
 display: flex;
 justify-content: flex-start; /* Aligns tabs to the right in RTL */
 list-style: none;
 flex-direction: column;
 padding: 0;
 flex: 1 1 20%;
 margin: 0;
 border: 1px solid #e9e9e9;
 border-radius: 8px;
 position: relative;
}

.tabs-nav::before {
 content: '';
 display: block;
 width: 100%;
 height: 100%;
 background: linear-gradient(145deg, #1b83541d, #fff);
 position: absolute;
 top: 0;
 right: 0;
 z-index: -1;
 opacity: 0.5;
}

/* Individual Tab Item */
.tabs-nav li {
 padding: 10px 20px;
 cursor: pointer;
 color: #9e9e9e; /* Default gray color for inactive tabs */
 font-size: 16px;
 font-weight: bold;
 border-top: 3px solid transparent; /* Transparent border to prevent layout shift */
 transition: color 0.3s ease, border-color 0.3s ease;
 margin-bottom: -1px; /* Helps the active border merge with the content box */
}

/* Active Tab Styling */
.tabs-nav li.active {
 color: #1db954; /* Bright green color for active tab text */
 border-bottom: 3px solid #1db954; /* Green top border for active tab */
}

/* Tab Content Container */
.tabs-content {
 padding: 1rem;
 flex: 1 1 80%;

 line-height: 1.8;
 border: 1px solid #e6e6e6;
 border-radius: 0.5rem;

 position: relative;
 p {
  line-height: 1.8;
  color: var(--paragraoh-text);
 }
}

/* Tab Content Pane */
.tab-pane {
 display: none;
}

/* Active Content Pane */
.tab-pane.active {
 display: block; /* Show only the active content pane */
}

.kfuShape {
 width: 813px;
 height: 214px;
 background: url(../img/university_pattern.png) bottom center no-repeat;
 margin: 0 auto;
}

@media screen and (max-width: 600px) {
 html {
  overflow-x: hidden;
  padding: 0 1rem;
  max-width: 100%;
  width: 100%;
 }


 .conatiner-flex {
  flex-direction: column;
  width: 100%;
  max-width: 100%;
 }

 .right,
 .vedio {
  flex: 1 1 0;
 }
 .vedio {
  margin-bottom: 2rem;
 }

 .firstStep .container {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  img {
   display: block;
   clear: both;
   max-width: 70%;
  }
 }

 .textContent {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem;
  img {
   display: block;
   clear: both;
   max-width: 70%;
  }
 }

 .tabs-container {
  flex-direction: column;
  padding: 0 1rem;
 }

 .tabs-nav {
  flex-direction: row;
 }
}
a.main-title {
    display: inline-block;
    width: 250px;
    background-color: #1b8354;
    position: relative;
    /* top: -25px; */
    right: 0;
    /* margin-left: 25px; */
    margin: 20px 0px 0px 25px;
    filter: drop-shadow(4px 0px 24px #1b835463);
    color: #fff;
    padding: 0.7rem 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    text-align: center;
}

.vision h2, .message h2, .values h2, .properties h2 a {
    color: #1b8354 !important;
}
ul.lists
{
	margin-right:20px;
}
