:root {
--color-primary: #1B2A41;
--color-accent: #00B4D8;
--color-teal: #229EA0;
--color-light-blue: #E3F2FD;
--color-white: #FFFFFF;
--color-surface: #F0F2F4;
--color-background: #F9FBFC;
--color-text: #1C1C1C;
--color-subtext: #6B7280;
--color-error: #E57373;
--bg-color: rgb(10, 10, 39);
--main-blue:rgb(10, 10, 39);

--font-heading: 'Poppins', sans-serif;
--font-body: 'Roboto', sans-serif;
--font-body2: 'Quicksand', sans-serif;

--font-size-h1: 32px;
--font-size-h2: 24px;
--font-size-h3: 20px;
--font-size-body: 16px;
--font-size-body2: 18px;
--font-size-small: 14px;
--font-size-caption: 13px;
--font--size-big: 50px;

--font-weight-regular: 400;
--font-weight-medium: 500;
--font-weight-bold: 700;

--line-height-base: 24px;
--max-paragraph-width: 700px;

--spacing-xs: 8px;
--spacing-sm: 16px;
--spacing-md: 24px;
--spacing-lg: 32px;
--spacing-xl: 48px;
--vertical-spacing: 10px;

--section-padding-y: 4%;    
--section-padding-x: 3%;      
--section-gap-y: 80px;



--container-pad:200px;
--section-y:clamp(28px,5vw,56px);
--section-gap-y:clamp(40px,7vw,90px);
--nav-height:70px;
}
html{
  overflow-x:hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body2);
  }
  body {
  min-height: 100vh;
  width: 100%;
  font-family: var(--font-body2) !important;
  background-color: var(--color-background);
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  }
  
  .title{
    padding-top:var(--vertical-spacing);
    padding-bottom:var(--vertical-spacing);
  }
  
  h1, h2 {
  font-family: var(--font-heading) !important;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
  
  }
  h1,h2,h3,h4,h5,h6{
  font-family: inherit;
  }
  .section-title {
  position: relative;
  display: inline-block;
  }
  img{
    max-width: 100%;
    height: auto;
    display: block;
  }
  i.fa-solid,
  i.fa-regular,
  i.fa-brands,
  .fa-solid,
  .fa-regular,
  .fa-brands{
    display: inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    vertical-align: middle;
  }
  button, a,.button{
    display: inline-flex;
    align-items:center;
    justify-content: center;
    gap:8px;
  }
  .social-media-container a{
    display: inline-flex;
    align-items:center;
    justify-content:center;
  }

  .tabs{
    width: 100%;
    max-width: min(900px,100%);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tabs-buttons{
    flex: 1 1 160px;
    max-width: 240px;
  }

  .campusgrid-container{
    gap:clamp(14px,4vw,50px);
  }

  .testimonial-container{
    gap: clamp(10px, 3vw,18px);
    justify-content: center;
  }

  @media (max-width: 930px){
    .hero{
      padding-left:var(--container-pad);
      padding-right:var(--container-pad);
    }
  }

.hero,
.explore-tab-ui,
.why-choose-us,
.filieres-wrapper,
.commentpostuler,
.testimonial-container,
.testimonial-wrapper,
.ourpartners-wrapper,
.choose-us-container,
.home-mega-section{
width:100%;
padding: 0px var(--container-pad) !important;
}

.explore-tab-ui,
.choose-us-container,
.testimonials-wrapper,
.ourpartners-wrapper,
.filieres-wrapper,
.commentpostuler{
 margin: 50px 0px;
}
/*-----------------Chat bot CSS ---------------*/
#chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  display:flex;
  cursor: pointer;
  transition: transform 0.2s ease;
  }
  
  #chat-bubble:hover {
  transform: scale(1.08);
  }
  
  #bot-icon {
  width: 60%;
  height: 60%;
  
  }
  #bot-icon-top{
  height: 40px;
  width:40px;
  position: relative;
  }
  #top-chat-window {
  position: fixed;
  bottom: 510px;
  right: 20px;
  width: 320px;
  height: 70px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background:  var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
  border-top-left-radius: 20px;
  
  box-shadow: 0 4px 12px rgba(105, 81, 212, 0.3);
  transition: transform 0.25s ease;
  }
  #chat-window {
    box-shadow: inset;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    box-shadow: 0 3px 5px 0px rgba(0,0,0,0.8);
    display: none;
    flex-direction: column;
    overflow-y: auto;
    background-color: white;
    border-bottom-right-radius: 24px;
  
  }
  #chat-window.open{
  display: flex;
  }
  #faq-buttons {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  }
  #sub-questions {
  display: none;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  }
  .faq-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  }
  .faq-btn:hover {
  background-color: var(--color-background);
  }
  #chat-messages {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap:8px;
    text-align: right;
  }
  .message {
  max-width: 80%;
  padding: 10px 12px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
  display: inline-block;
  }
  .message.bot {
  background-color: var(--color-light-blue);
  border-bottom-left-radius: 6px;
  text-align: left;
  }
  .message.user {
  background: var(--color-teal);
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  }
  .msg-meta {
  font-size: 11px;
  color: var(--color-primary);
  margin-top: 4px;
  display: block;
  text-align: right;
  opacity: 0.9;
  }
  #chat-input {
    display: flex;
  }
  #chat-input input {
    flex: 1;
    font-family: 'Times New Roman', Times, serif;
    padding: 8px;
    border: var(--color-primary);
    border-radius: 20px;
    margin: 20px;
    margin-right:0px;
    border: 1px solid var(--color-primary);
  }
  #chat-input button {
    padding: 8px 12px;
    border: none;
    background: var(--color-primary);
    border-radius: 20px;
    margin: 20px;
    color: var(--color-light-blue);
    cursor: pointer;
  }
  .typing {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background-color: var(--color-background);
  margin-top: 6px;
  }
  .typing span {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: var(--color-text);
  display: inline-block;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
  }
  .typing span:nth-child(2) {
  animation-delay: 0.2s;
  }
  .typing span:nth-child(3) {
  animation-delay: 0.4s;
  }
  @keyframes blink {
  0% { opacity: 0.2; }
  20% { opacity: 1; }
  100% { opacity: 0.2; }
  }
  #back_button {
  align-self: flex-start;
  border: black;
  border-radius: 100px;
  background-color:var(--color-light-blue);
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 10px;
  display: none;
  
  }
  /*-----------End of chatbot part-----------*/

.header-container {
background-color: rgb(10, 10, 39);
padding-bottom: 80px;
position: relative;
z-index: 3000;
}
.bg-main-container{
background-color: rgb(10, 10, 39);
border-bottom-left-radius: 10%;
border-bottom-right-radius: 10%;

}
.navigation-bar {
display: flex;
justify-content: space-evenly;
align-items: center;
padding: 0 10%;
height: 70px;
position: fixed !important;
top: 0;
background-color: rgb(10, 10, 39);
width: 100%;


}
.nav-left {
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-left img {
width: 80px;
margin-right: var(--spacing-xl);
}
.nav-center {
display: flex;
justify-content:center;  
}
.nav-center a{
margin-right: 30px;
}
.navigation-bar a {
color: white;
font-size: var(--font-size-body2);
font-family: var(--font-heading);
font-weight: bold;
cursor: pointer;
text-decoration: none;
}
.nav-right {
display: flex;
gap: var(--spacing-sm);
}
.contact {

color: #071426 !important;

background: white;
width: 120px;
text-align: center;

}
.connexion {
background: var(--color-teal);
color: var(--color-white);
width: 150px; 
text-align: center;
}
.button{
height: 30px;
border: none;
outline: none;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
font-size: var(--font-size-body);
font-family: var(--font-heading);
font-weight: bold;
}

/*Hero Section*/
.hero{
display: flex;
justify-content:space-between;
position: relative;
z-index: 500;
}
.hero-right{
max-width: 50%;
}
.hero-left{
max-width: 50%;
margin-top: var(--spacing-xl);
}
.hero-left h1{
font-size: var(--font--size-big);
color: var(--color-white);
font-family: var(--font-body);
display: inline-block;
margin-bottom: 0px;
}
.hero-left .subtitle1{
font-size: var(--font-size-body2);
color: var(--color-white);
font-weight: bold;
line-height:30px;
}
.hero-left .subtitle2{
font-size: var(--font-size-body2);
color: var(--color-white);
font-weight: bold;
line-height:30px;
}
.hero-right img{
height: 500px;
width: 500px;
border-radius: 20px;

display: inline-block;
}
.subtitled-wrapper span{
color:#00B4D8;
font-style: italic;
}
.postuler{
border:2px solid #229EA0;
color: #FFFFFF !important;
width: 150px;
background: transparent;
}
.subtitled-wrapper .explorer{ 
width: 150px;
background: transparent;
background: var(--color-white);
color:  #229EA0;
margin-top: var(--spacing-xl);
}
.subtitled-wrapper button{
margin-right: 20px;
}
.subtitled-wrapper{
margin-top: var(--spacing-xl);
}

.icon-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
pointer-events: none;
}

.icon-background i {
position: absolute;
color: white; 
animation: floatIcon 10s ease-in-out infinite;
}

.icon-background i:nth-child(odd) {
color: white;
}
.icon-background i:nth-child(even) {
color:white;
}
.icon-background i:nth-child(1) { top: 10%; left: 12%; font-size: 30px; animation-delay: 0s; }
.icon-background i:nth-child(2) { top: 20%; left: 40%; font-size: 40px; animation-delay: 1s; }
.icon-background i:nth-child(3) { top: 25%; left: 70%; font-size: 36px; animation-delay: 2s; }
.icon-background i:nth-child(4) {top: 8%;  left: 75%; font-size: 26px; animation-delay: 3s;
}
.icon-background i:nth-child(5) { top: 65%; left: 80%; font-size: 48px; animation-delay: 4s; }
.icon-background i:nth-child(6) {top: 10%; left: 5%; font-size: 26px; animation-delay: 2.5s;}
.icon-background i:nth-child(7) { top: 60%; left: 60%; font-size: 38px; animation-delay: 3.5s; }
.icon-background i:nth-child(8) { top: 75%; left: 10%; font-size: 26px; animation-delay: 4.5s; }
.icon-background i:nth-child(9) {top: 75%; left: 10%; font-size: 26px; animation-delay: 4.5s;}

.icon-background i:nth-child(10){ top: 15%; left: 85%; font-size: 44px; animation-delay: 1.5s; }
.icon-background i:nth-child(11){ top: 45%; left: 45%; font-size: 30px; animation-delay: 2.2s; }
.icon-background i:nth-child(12){ top: 20%; left: 60%; font-size: 35px; animation-delay: 3.2s; }
.icon-background i:nth-child(13){ top: 10%; left: 70%; font-size: 42px; animation-delay: 1.2s; }
.icon-background i:nth-child(14){ top: 85%; left: 50%; font-size: 28px; animation-delay: 2.8s; }
.icon-background i:nth-child(15){ top: 60%; left: 15%; font-size: 36px; animation-delay: 0.8s; }
.icon-background i:nth-child(16){ top: 25%; left: 25%; font-size: 40px; animation-delay: 1.9s; }
.icon-background i:nth-child(17){ top: 75%; left: 75%; font-size: 38px; animation-delay: 3.7s; }
.icon-background i:nth-child(18){ top: 50%; left: 85%; font-size: 34px; animation-delay: 0.4s; }
.icon-background i:nth-child(19){ top: 40%; left: 10%; font-size: 30px; animation-delay: 1.4s; }
.icon-background i:nth-child(20){ top: 65%; left: 45%; font-size: 45px; animation-delay: 2.9s; }

@keyframes floatIcon {
0%   { transform: translateY(0) scale(1); opacity: 0.05; }
50%  { transform: translateY(-15px) scale(1.2); opacity: 0.15; }
100% { transform: translateY(0) scale(1); opacity: 0.05; }
}

/*Explore Tabs UI*/
.explore-tab-ui {
  width: 100%;
}

.tabs {
  height: 60px;
  background: #e5e6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  gap: 10px;
  margin: 0 auto;
}

.tabs-buttons {
  width: 200px;
  position: relative;
  background: transparent;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.tabs-buttons::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--color-accent, #0d6efd);
  transition: width 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  border-radius: 10px;
}

.campusgrid-container{
  margin-top:var(--vertical-spacing);
  
}

.tabs-buttons.btn-active::after {
  width: 70%;
  opacity: 1;
}

.tabs-content {
  display: none;
  width: 100%;
  font-size: 18px;
}

.tabs-content.tabs-content-active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3,180px) !important;
  justify-content: center;
  gap: 10px;
  width: 100%;

}

.campus-grid-item:nth-child(1){
  grid-column: span 2;
  grid-row: span 3;
}
.campus-grid-item:nth-child(2){
  grid-column: span 2;
  grid-row: span 2;
}
.campus-grid-item:nth-child(1) img,
.campus-grid-item:nth-child(2) img,
.campus-grid-item:nth-child(3) img,
.campus-grid-item:nth-child(4) img{
border-radius: 25px;
}




.campus-grid-item:nth-child(3){

}
.campus-grid-item:nth-child(4){

}

















.campus-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


  

  

/*
.campusflex-container{
display: flex;
justify-content: space-between;

}
*/

/*Why choose Us Section*/
/*
.why-choose-us{
display: grid;
grid-template-columns: repeat(3,1fr);
align-items: center;
gap: 30px;
box-shadow: 0px 3px 5px 0px rgba(206, 203, 203, 0.1);
background-color: #e8f5f8;
}

.why-choose-us h1{
font-family: var(--font-body);
}
.why-choose-us-element{
background-color: white;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
padding: 40px;
transition: transform 0.3s ease;
cursor:pointer;
}
.why-choose-us-element h2{
font-family: var(--font-body);
margin-bottom:var(--spacing-sm);
color:var(--color-primary);
}
.why-choose-us-element:hover{
transform:translateY(-5px);
}
.why-choose-us-element i{
font-size: 30px;
margin-bottom:var(--spacing-md);
background:#e8f5f8;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content:center;
border-radius: 50%;
}
*/
.comment-postuler-title{
margin: 0 10%;
font-family: var(--font-body);
}

/*Testimonials*/

.testimonials-wrapper h1 {
text-align: center;
}
.explore-tab-ui h1{
font-family: var(--font-heading);
text-align:center;
}
.testimonials-wrapper .testimonial-paragraph {
text-align: center;
}



.testimonial-container {
display: grid;
grid-template-columns: repeat(4, 300fr);
padding: 0px ;
width:100%;
justify-content: center;
margin-top: var(--vertical-spacing);
}

.testimonial-element {
height: 500px;
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
transform: scale(1);
transition: transform 0.5s ease-in;
position: relative;
overflow: hidden;
background-color:var(--color-background);
}
/* Testimonial Text */
.testimonial-text {
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 5;
  }
  
  .testimonial-text p {
  max-width: 250px;
  color: #222;
  }

.testimonial-element:hover {
transform: scale(1.015);
}
.testimonial-top {
position: relative;
overflow: hidden;
width: 100%;
height: 50%;
border-top-left-radius: 20px;
z-index: 2;
}

.testimonial-top img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-top-left-radius: 20px;
transform: scale(1);
transition: transform 0.5s ease-in;
}

.testimonial-top img:hover {
transform: scale(1.2);
}
/* Diagonal shape */
.testimonial-top::after {
content: '';
position: absolute;
width: 150%;
height: 30%;
background-color: var(--color-background);
bottom: -30px;
transform: rotate(-10deg);
z-index: 3;
transition: background-color 0.5s ease-in;
}


.fa-quote-left,
.fa-quote-right {
color: #B0B0B0;
font-size: 18px;
}
.fa-quote-left {
position: absolute;
top: 0;
left: 20px;
}

.fa-quote-right {
position: absolute;
bottom: 70px;
right: 20px;
}
.extra-student-info {
margin-top: 15px;
text-align: center;
}

.extra-student-info h2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
}

/*Our Partners*/

.ourpartners-wrapper h1{
font-family: var(--font-heading);
padding: var(--vertical-spacing) 0;
}
.ourpartners-wrapper h1,  .ourpartners-wrapper p{
text-align: center;
}
.ourpartners-container{
display: grid;
grid-template-columns: repeat(4,100px);
margin-top: 20px;
box-sizing: border-box;
justify-content: center;
width: 100%;
row-gap: 30px;
column-gap: 230px;
}








.ourpartners-element{
padding-right: 0px !important;
align-content: center;
cursor: pointer;
background: var(--color-background);
cursor: pointer;
transform: translateY(-3px);
transition: background 0.5s ease-in-out, transform 0.5s ease-in;
}
.ourpartners-element img{
  width: 100%;
  height: 100%;
  }
.ourpartners-element:nth-child(1){
background: #E0F7FA;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
}
.ourpartners-element:hover{
background: #E0F7FA;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
transform: translateY(0);
}
/*Footer*/
.footer{
padding: 20% 10%;
display: flex;
flex-direction: column;
box-sizing: border-box;
background-color:rgb(10, 10, 39);
color: white;
height: 110vh;
position: relative;
overflow: hidden;
z-index: 8;
}
.footer-wrapper{
background-color: var(--color-background);
z-index: 10; 
}
.footer::before{
content:'';
position: absolute;
background: var(--color-background);
width: 250%;
top: -30%;
left: -40px;
transform: rotate(-6deg);
height: 30vh;
}
.footer-wrapper{
background-color: var(--color-background);
}
.footer-top{
border-bottom: 3px dotted white;
padding-bottom: 40px;
}
.footer-end{
display: flex;
flex-direction: column;
align-items: center;
position: absolute;
border-top: 2px solid white;
bottom: 20px;
width: 100%;
left: 0;
padding-top: 30px;
line-height: 30px;
}
.footer-top h1{
color: white;
font-family: var(--font-heading);
}
.logo-container{
width: 100px;
height: 100px;
}
.logo-container img{
width: 100%;
height: 100%;
color: white;
}
.footer-top{
display: flex;
flex-direction: column;
}
.social-media-container{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 300px;
}
.social-media-container i{
font-size: 25px;
color: white;
}
.footer-body{
display: grid;
grid-template-columns: repeat(4,1fr);
}
.links-container{
display: flex;
flex-direction: column;
margin-top: 30px;
line-height: 40px;
border-right: 2px dotted white;
padding-left: 30px;
}

.footer .links-container a{
  display: block;
  width: fit-content;
  justify-content: flex-start;
  align-items:flex-start;
  text-align:left;
}
.footer .links-container-contact a{
  display: inline;
  width: auto;
}
.links-container .title{
  padding: 0 !important;
}
links-container .title h2{
  text-align:left !important;
}
.links-container:last-child{
border-right: none;
}
.links-container h2{
margin-bottom: 30px;
}
.links-container a{
color: white;
text-decoration: none;
text-align: left !important;
}
.links-container-contact{
display: flex;
flex-direction: row;
}
.links-container-contact h3{
margin-right: 20px;
}
.filieres-wrapper {
margin: 5% 10%;

padding: 40px;
border-radius: 16px;
font-family: "Poppins", sans-serif;
z-index: 100;
}

.table-container {
overflow-x: auto;
}

.table {
width: 100%;
border-collapse: collapse;
border-radius: 12px;
overflow: hidden;
}
.table thead th {
background-color: #229ea0;
color: white;
text-align: left;
padding: 18px;
font-size: 18px;
}
.table td {
padding: 18px;
vertical-align: top;
font-size: 16px;
color: #333;
}
.table tbody tr:nth-child(even) {
background-color: #f4f7f9;
}
.table td ul {
padding-left: 20px;
margin: 0;
}
.table td ul li {
margin-bottom: 6px;
}
.commentpostuler {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px;
background: #fff;
border-radius: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
flex-wrap: nowrap;
margin: 5% 10%;
}

.commentpostuler-element {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
flex: 1;
min-width: 160px;
}
.check {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: rgb(10, 10, 39);
color: white;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
animation: checkAnim 0.5s ease forwards;
}

.line {
position: absolute;
top: 15px;
left: 50%;
height: 5px;
background-color: rgb(10, 10, 39);
width: 0;
z-index: 1;
animation: lineGrowHorizontal 0.5s ease forwards;
transform: translateX(10px);
}

.commentpostuler-element:nth-child(1) .check { animation-delay: 0s; }
.commentpostuler-element:nth-child(1) .line { animation-delay: 0.8s; }

.commentpostuler-element:nth-child(2) .check { animation-delay: 1.2s; }
.commentpostuler-element:nth-child(2) .line { animation-delay: 1.8s; }

.commentpostuler-element:nth-child(3) .check { animation-delay: 2.4s; }
.commentpostuler-element:nth-child(3) .line { animation-delay: 3s; }

.commentpostuler-element:nth-child(4) .check { animation-delay: 3.6s; }
.commentpostuler-element:nth-child(4) .line { animation-delay: 4.2s; }

.commentpostuler-element:nth-child(5) .check { animation-delay: 4.8s; }

.commentpostuler-element:last-child .line {
display: none;
}

.commentpostuler-element span {
font-weight: bold;
margin-top: 8px;
}

.commentpostuler-element p {
text-align: center;
font-size: 14px;
margin-top: 5px;
max-width: 150px;
}
@keyframes checkAnim {
0% {
  background-color: rgb(10, 10, 39);
  transform: scale(1);
}
70% {
  background-color: limegreen;
  transform: scale(1.2);
}
100% {
  background-color: limegreen;
  transform: scale(1);
}
}

@keyframes lineGrowHorizontal {
0% {
  width: 0;
  background-color: rgb(10, 10, 39);
}
100% {
  width: 60px;
  background-color: limegreen;
}
}

@keyframes lineGrowVertical {
0% {
  height: 0;
  background-color: rgb(10, 10, 39);
}
100% {
  height: 60px;
  background-color: limegreen;
}
}
.buttons-role-container {
display: flex;
justify-content: center;
margin-top: 20px;
}

.button-tab {
margin-right: 20px;
border: none;
background: none;
font-size: 18px;
font-family: sans-serif;
cursor: pointer;
padding: 10px;
}

.button-active {
border-bottom: 2px solid green;
color: blueviolet;
}

.panel-tab {
display: none;
padding: 20px;
font-family: sans-serif;
font-size: 16px;
}

.panel-active {
display: block;
}
.application p{
color: var(--color-white);
font-family: var(--font-heading);
margin-bottom: 0px;
font-weight: bold;
font-size: 30px;
}
.application{
display: flex;
justify-content: center;
align-items: center;
height: 5vh;
margin: 5% 5%;


}
.application-container {
border-bottom-left-radius: 20%;
border-bottom-right-radius: 20%;
background: 
  linear-gradient(rgba(0, 0, 0, 0.6), rgba(131, 129, 129, 0.6)),
  url('/images/STIapply.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

box-shadow:
  0 6px 12px rgba(0, 0, 0, 0.4),
  0 8px 24px rgba(0, 0, 0, 0.2);
color: white;
}
.application-nav-control{
display: flex;
justify-content: space-evenly;
align-items: center;
padding: 0 10%;
height: 70px;
width: 100%;
}
.application-nav-control a{
font-weight: bold;
}
.application-notice-container{
margin: 50px;
width: 100%;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;

}
.application-notice-item{
width: 700px;
position:relative;

}
.application-notice-item p{
font-family: var(--font-body2);
font-size: var(--font-size-body);
font-weight: bold;
font-style: italic;
color: red;

}
.application-notice-item::before{
content:'';
width: 5px;
border-radius: 20px;
height: 60px;
position: absolute;
background-color: var(--bg-color);
left: -20px;
transform: translateY(-50%);
top: 50%;
}

.application-form-container form{
display:grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: repeat(6,250px);
width: 1000px;
height: 650px;
position: relative;
top: 60%;
left:50%;
transform:translateX(-50%);
column-gap: 5%;
margin-bottom: 400px;
}

.personal-information-grid-part-1{

background-color: var(--color-background);
grid-row: 1/4;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
border-radius: 20px;
padding: var(--spacing-xl) var(--spacing-xl);

}
.personal-information-grid-part-2{
background-color: blue;
grid-row: span 4;
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
background-color: var(--color-background);
padding: var(--spacing-xl) var(--spacing-xl);
border-radius: 20px;
}
.photo-frame{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
width: 100%;
height: 150px;
border: 1px solid black;
cursor: pointer;
overflow: hidden;
background-color: #f8f9fa;
color: #555;
font-size: 16px;
font-weight: 600;
text-align: center;
transition: border-color 0.3s, background 0.3s;
}

.photo-frame:hover{
border-color: #094db1;
background-color: #eef4ff;
}

.photo-frame span{
cursor: pointer;
}

.photo-upload img{
width: 100%;
height: 100%;
object-fit: cover;
}
.personal-information label:not(.photo-frame) {
font-family: var(--font-heading);
font-weight: 500;
width: 100%;
margin-right: 10px;
}
.personal-information input:not([type="radio"]) {
width: 100%;
height: 35px;
border-radius: 5px;
border: none;
outline: none !important;
padding: 10px 10px;
font-size: 14px;
}
.personal-information input[type="radio"] {
width: 16px !important;
height: 16px !important;
margin-right: 6px !important;
font-weight: 100;
}


.personal-information input:focus{
border: none;
outline: none !important;
}

.application-form-container legend{
font-size: 18px;
font-weight: bold;
font-family: var(--font-heading);
position: relative;
display: inline-block;
padding-left: 12px;
margin-bottom:var(--spacing-md);
margin-top: var(--spacing-md);

}

.application-form-container legend::before{
content: '';
position: absolute;
left: 0;
top:-2px;
bottom: 0.1em;
width: 6px;
background: #071426;

height: 35px;
}
.application-form-container{
font-family:var(--font-body);
z-index: 10000;

}
.application-form-container legend::after{
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -6px;
height: 3px;
background: #000;
width: 300px;
}
.academic-information{
width: 100%;
height: 35%;
border: 1px solid black;
padding: var(--spacing-md);
border-radius: 10px;
line-height: 1.6;
margin-bottom: var(--spacing-xl);
font-family: var(--font-body2);
font-weight: bold;
}

.last-school-completed{
width: 100%;
}
.last-grade-completed select{
width: 100px;
}
.requiredDocuments{
width: 100%;
height: 40%;
border: 1px solid black;
padding: var(--spacing-md);
border-radius: 10px;
line-height: 1.6;
font-family: var(--font-body2);
font-weight: bold;
}
.required-documents-flex-container{
display: flex;
flex-direction: row;
height: 70%;
gap: var(--spacing-md);
}
.birthAct{
flex-basis:45%;
border: 2px dotted black;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content:center;
text-align: center;
padding: 0 var(--spacing-xs);
}
.birthAct-doc{
width: 100%;
height: 100%;
}
.transcript{
flex-basis:45%;
border: 2px dotted black;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content:center;
text-align: center;
padding: 0 var(--spacing-xs);
}

.file-name {
margin-top: 8px;
font-size: 14px;
color: #333;
word-break: break-all;
}
.confirmValidation{
margin: var(--spacing-md) 0;
}
.validation-input label{
font-family: var(--font-body2);
font-weight: bold;
font-style: italic;
color: red;
}
.button-container{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin-top: var(--spacing-xl);

}
.submit-button{

padding: 10px 10px !important;
height: 40px !important;
border-radius: 3px !important;
width: 70%;
font-size: 18px;
display: inline-flex !important;
align-items: center;
justify-content: center;
background:#071426;
color:var(--color-light-blue);

}
/*Register and login modals*/
.regislog-right{
flex-basis: 50%;
margin-top: 10%;
}
.regislog-left{
flex-basis: 40%;
background:var(--bg-color);
position: relative;
display: flex;
overflow: hidden;
flex-direction: column;
padding-top: 15%;
padding-left: 80px;
padding-right: 80px;
}
.regislog-left img{
width: 100px;
display: block;
margin-top: 0;
margin-left: 20px;
}
.regislog-left::after{
content:'';
width: 40%;
height: 100%;
top: 10px;
transform: rotate(-10deg) translateX(200px);
background: white;
padding: 5% 9%;
position: absolute; 
}
.regislog-left h1{
display: inline-flex;
color: var(--color-light-blue);
margin-top: 0;  
}
.regislog-right input{
width: 100%;
margin: 7px 20px;
height: 30px;
border-left:  2px solid var(--color-primary);
border-right: none;
border-top: none;
border-bottom: 2px solid var(--color-primary); 
}
.regislog-right input:focus{
border: none;
}
input:focus {
outline: none;
box-shadow: none;
border-left:  2px solid var(--color-primary);
border-right: none;
border-top: none;
border-bottom: 2px solid var(--color-primary);
}
.regislog-right p{
text-align: center;
margin-top: 20px;
}

.regislog-right span{
display: inline-block;
margin-bottom: 10px;
}
.closing-icon, .closingIconLogin{
position: absolute;
top: -10px;
right: -10px;
cursor: pointer;
background: var(--bg-color);
width: 30px;
height: 30px;
z-index: 1;
color: white;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
font-size: 20px;
transition: color 0.5s ease;
}
.closing-icon i, .closingIconLogin i:hover{
color: red;
}
.closing-icon i:active, .closingIconLogin:active{
color: red;
}
.social-media {
display: flex;
justify-content: center;
margin-top: 40px;
gap: 20px; 
}
.social-icon {
width: 50px;
height: 50px;
border-radius: 50%;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.social-icon i {
font-size: 30px;
color: var(--text-color, black);  
}
.social-icon i:hover { 
color: var(--color-accent);
cursor: pointer;
}
.button-register{
background-color: var(--bg-color);
width: 100%;
height: 50px;
color: white;
font-size: var(--font-size-h3);
}
.button-register:hover{
color: var(--color-accent);
}

/*Register and Login Modals*/
.regislog-container, .login-container{
height: 70vh;
width: 100vh;
position: absolute;
color: black;
display: flex;
top: 20%;
left: 50%;
transform:translateX(-50%);
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
background: white;
z-index: 5000;
transition: all 0.3s ease;
}

.register-container-overlay-bg,.login-container-overlay-bg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--color-white);
z-index: 5000;
display: flex;
align-items: center;
justify-content: center;

transition: all 0.3s ease;

}
/*
.displayRegister, .displayLogin{
visibility: visible;
opacity: 1;
}
.disableBg-register, .disableBg-login{
visibility: visible;
opacity: 1;
}
*/

.dashboard-container{
display: grid;
grid-template-columns: 1fr 4fr;
grid-template-rows: repeat(5,200px);
height: 100vh;
width: 100vw;
background: red;

}
#sidebar{
grid-column: 1/2;
grid-row:  span 5;
background-color:rgb(8, 8, 29);
display: flex !important;
flex-direction: column;
padding-top: 50px;

}
#sidebar button{
background: none;
color: white;
border: none;
outline: none;
font-size: 16px;
margin-bottom: 20px;
cursor: pointer;
}
#sidebar h1{
color: red;
}

#main-content p{
color: red;
}
.dashboard-container {
display: grid;
grid-template-columns: 1fr 4fr;
grid-template-rows: repeat(5, 200px);
height: 100vh;
width: 100vw;
background: var(--color-white);
overflow: hidden;
}

/* Sidebar */
#sidebar {
grid-column: 1 / 2;
grid-row: span 5;
background-color: rgb(8, 8, 29);
display: flex;
flex-direction: column;
padding-top: 50px;
}

#sidebar button {
background: none;
color: #ffffff;
border: none;
outline: none;
font-size: 16px;
margin-bottom: 20px;
cursor: pointer;
}

#sidebar h1 {
color: red;
}

/* Main dashboard content */
.dashboard-tabs-content {
display: none !important;
color: #000;
font-weight: bold;
}

.dashboards-content-active {
display: block !important;
}
.dashboards-btn-active {
color: red;
}
.dashboards-header-outer-container {
display: flex;
justify-content: center;
}
.dashboards-header {
width: 95%;
background-color: var(--color-surface);
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
height: 45px;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
padding: 0 20px;
}
.dashboard-logo-container {
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}
.dashboard-logo-container img {
width: 80px;
}
.dashboard-middle-header {
width: 400px;
}

.dashboard-middle-header input::placeholder {
font-size: 16px !important;
}
.dashboards-header-right i,
.dashboard-middle-header i {
font-size: 20px;
cursor: pointer;
}

.dashboard-icons-container {
display: inline-flex;
width: 150px;
justify-content: space-around;
}

.search-form {
display: flex;
align-items: center;
background: #fff;
border-radius: 5px;
padding: 5px 10px;
}

.search-form input {
border: none;
outline: none;
flex: 1;
padding: 5px;
}

.search-form button {
border: none;
background: none;
cursor: pointer;
color: #071426;
}

/*OVERVIEW CARDS*/

.dashboard-card-outer-container {
display: flex;
justify-content: center;
margin-top: var(--spacing-xl);
}

.dashboard-card-container {
width: 95%;
display: flex;
column-gap: 20px;
}

.card-child {
background-color: var(--color-surface);
box-shadow: 3px 4px 7px 2px rgba(0, 0, 0, 0.4);
flex-basis: 25%;
height: 120px;
border-radius: 5px;
position: relative;
overflow: hidden;
display: flex;
justify-content: space-between;
padding: 14px;
}
.card-child-left,
.card-child-right {
position: relative;
z-index: 2;
}

.card-child-right {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
}

.card-child-right span {
font-size: var(--font-size-h2);
color: var(--color-subtext);
}

.card-child-right h2 {
font-size: 16px;
}

.card-child-left {
display: flex;
justify-content: center;
align-items: center;
width: 40%;
}

.card-child-left img {
display: inline-block;
width: 48px;
height: 48px;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
}
.card-child::before {
content: '';
position: absolute;
width: 40%;
height: 160%;
background: #071426;
transform: rotate(-30deg);
top: -20px;
left: -15px;
z-index: 0;
}

.card-child::after {
content: '';
position: absolute;
right: 0;
top: 0;
width: 10px;
height: 100%;
background: #071426;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
z-index: 1;
}

.card-child:nth-child(2)::before,
.card-child:nth-child(2)::after {
background-color: red;
}

.card-child:nth-child(3)::before,
.card-child:nth-child(3)::after {
background-color: green;
}

.card-child:nth-child(4)::before,
.card-child:nth-child(4)::after {
background-color: purple;
}

.dashboard-tab-button {
font-weight: bold;
font-size: 20px !important;
line-height: 2;
}

.socratetech-statistic {
display: grid;
column-gap: 30px;
grid-template-columns: 2fr 2fr;
margin-top: var(--spacing-xl);
padding: 0 var(--spacing-xl);
}

.socratetech-statistic-left,
.socratetech-statistic-right {
box-shadow: 3px 4px 7px 2px rgba(0, 0, 0, 0.4);
padding: 40px;
border-radius: 5px;
}

#chart,
#performanceChart {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.user-management {
padding: 40px 40px;
}

.add-admin-button {
height: 50px !important;
width: 250px;
border-radius: 2px;
background-color: #071426;
color: #ffffff;
font-size: var(--font-size-h3);
text-transform: uppercase;
}

.user-management-tab-container {
margin: var(--spacing-lg);
}

.add-admin-button span i {
text-align: center;
}
.user-management-tab-button {
margin-top: 20px;
width: 100px;
margin-right: 20px;
cursor: pointer;
background-color: inherit;
outline: none;
border: none;
font-weight: bold;
font-family: var(--font-heading);
font-size: 20px;
}

.user-management-content-container {
display: none;
margin-top: var(--spacing-lg);
}

.user-management-content-container.userManagementActiveContentContainer {
display: block !important;
}

.user-management-tab-button.userManagementActiveButton {
position: relative;
color: red;
}

.user-management-tab-button.userManagementActiveButton::after {
content: '';
width: 100%;
background-color: #071426;
height: 5px;
position: absolute;
bottom: 0;
left: 0;
border-radius: 5px;
transition: all 0.4s ease-in;
}

.admin-table-container {
max-height: 600px;
overflow-y: scroll;
overflow-x: scroll;
border-radius: 5px;
border: 2px solid #071426;
}

.admin-table-container table {
width: 100%;
border-collapse: collapse;
}

.admin-table-container thead th {
background: #071426;
color: #fff;
}

.admin-table-container tbody tr:nth-child(even) {
background: #b0b0b0;
}

.admin-table-container tbody tr:nth-child(odd) {
background: #ffffff;
}

.admin-table-container tbody tr:nth-child(even) td {
color: #fff;
}

.admin-table-container tbody tr:nth-child(odd) td {
color: #000;
}

.admin-table-container th,
.admin-table-container td {
padding: 10px 14px;
text-align: left;
}

.admin-table-container thead {
font-size: 18px;
font-weight: bold;
}

.admin-table-container tbody {
font-size: 16px;
}

#modify {
background-color: blue;
color: #ffffff;
width: 50px;
border-radius: 5px;
}

#modify i {
text-align: center;
}

.classes-content-container {
display: none;
margin: var(--spacing-lg);
}

.classesContentContainerActive {
display: block;
}

.classes-buttons-tab-container {
margin-top: 30px;
margin-left: var(--spacing-md);
}

.class-button-tab {
width: 100px;
margin-right: 20px;
}

.classesButtonsActive {
background-color: rgb(10, 10, 39);
color: #ffffff;
}

.classes-buttons-info-container {
max-width: fit-content;
height: 45px;
background-color: #071426;
display: flex;
align-items: center;
margin-top: 40px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.class-button-tab-info {
background-color: inherit !important;
color: #ffffff;
height: inherit !important;
margin-right: 8px;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
}

.classInfoActiveButton {
background-color: #0e1223;
color: #ffffff !important;
}

.informations-per-classes-main-container .informations-perclass-content-container {
display: none;
}

.informations-per-classes-main-container .informations-perclass-content-container-active {
display: block;
}

.informations-perclass-buttons-container .informations-perclass-button-active {
color: red;
}


.basic-info-container {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(5, 60px);
gap: 1rem;
width: 100%;
margin: 0 auto;
}

.basic-info-container .basic-info {
grid-column: span 2;
grid-row: span 4;
background-color: var(--color-background);
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.8);
padding: var(--spacing-md);
position: relative;
border-radius: 10px;
}

.basic-info-container .basic-info span {
display: inline-block;
margin-bottom: 15px;
font-size: 20px;
position: relative;
}

.basic-info-container .basic-info span::after {
content: '';
width: 100%;
height: 3px;
margin-top: 10px;
bottom: 0;
position: absolute;
background-color: #229ea0;
left: 0;
}

.basic-info-container .basic-info h2 {
font-size: var(--font-body2);
font-weight: 400;
line-height: 30px;
}

.basic-info-container .basic-info::before {
content: '';
width: 100%;
top: 0;
left: 0;
height: 10px;
background-color: #229ea0;
position: absolute;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

/* Tutor card */
.basic-info-container .tutor-info {
background-color: var(--color-background);
grid-row: span 4;
grid-column: span 3;
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.8);
position: relative;
border-radius: 10px;
padding: 0;
display: flex;
}

.tutor-info-left,
.tutor-info-right {
margin: 0;
height: 100%;
color: #000;
}

.tutor-info-left {
flex-basis: 40%;
z-index: 1;
}

.tutor-info-right {
flex-basis: 60%;
padding: 20px;
line-height: 25px;
position: relative;
}

.tutor-info-right h4 {
color: #229ea0;
}

.tutor-info-right p {
font-size: var(--font-size-small);
color: #000 !important;
font-family: var(--font-body);
font-weight: 300;
letter-spacing: 1px;
}
.tutor-info-right strong {
font-weight: bold;
}
.tutor-info-left img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.tutor-info-right::after {
content: '';
width: 1%;
height: 100%;
right: 0;
top: 0;
background-color: #229ea0;
position: absolute;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}

.courses-container {
width: 80vw;
max-height: 550px;
border-radius: 5px;
border: 2px solid #071426;
padding: 0;
overflow-x: auto;
overflow-y: auto;
margin-top: 30px;
}
.courses-table {
width: 100%;
border-collapse: collapse;
margin: 0;
border-radius: 5px;
}
.courses-table th,
.courses-table td {
padding: 8px 10px;
border: 2px solid #071426;
white-space: nowrap;
text-align: center;
}
.courses-table thead th {
position: sticky;
top: -10px;
background-color: #071426;
color: #ffffff;
z-index: 2;
}
.new-course {
margin-top: 15px;
border-radius: 10px;
background-color: #071426;
color: #ffffff;
height: 40px;
width: 200px;
}

.cross {
display: inline-flex;
width: 20px;
height: 20px;
flex-direction: column;
border-radius: 50%;
margin-left: 10px;
align-items: center;
color: #ffffff;
}
.schedule-container table {
border-collapse: collapse !important;
margin-left: 0;
}

.schedule-container th,
.schedule-container td {
border: 2px solid #000;
text-align: center;
cursor: pointer;
transition: color 0.5s, background-color 0.5s;
}

.schedule-container th:hover,
.schedule-container td:hover {
background: #071426;
color: #ffffff;
font-weight: bold;
}

.schedule-container td {
padding: 25px;
font-family: var(--font-body);
}

.schedule-container th {
padding: 17px;
}
.schedule-flag {
color: red;
font-weight: 800;
border-right: none;
background-color: transparent;
transition: color 0.5s, background-color 0.5s;
}
.schedule-flag:hover {
background: #071426 !important;
color: red !important;
}

.schedule-break {
font-weight: bold !important;
color: rgb(12, 12, 96);
}

.student-container {
width: 80vw;
max-height: 610px;
overflow: hidden;
border-radius: 2px;
border: 2px solid #071426;
padding: 0;
overflow-x: scroll;
overflow-y: scroll;
margin-top: 30px;
}
.student-table-container {
width: 100%;
border-collapse: collapse;
margin: 0 !important;
}
.student-container thead th {
background-color: #071426;
color: #ffffff;
position: sticky;
top: -10px;
z-index: 4;
border-top: 3px solid #071426;
}
.student-container tbody tr:nth-child(even) {
background-color: #f4f5f9;
}

.student-container tbody tr:nth-child(odd) {
background-color: #ffffff;
}
.student-container th,
.student-container td {
padding: 8px 10px;
border: 1px solid #071426;
white-space: nowrap;
text-align: left;
}

.student-container tbody td {
z-index: 1;
}


.delete i {
text-align: center;
}

.button-container .edit i:hover,
.button-container .delete i:hover {
display: inline-flex;
justify-content: center;
cursor: pointer;
}

.delete:hover,
.delete:active {
color: red;
cursor: pointer;
}

.edit:hover,
.edit:active {
color: #ffffff;
cursor: pointer;
background-color: #071426;
outline: none;
border: 1px solid #000;
border-radius: 5px;
}

.button-container {
display: flex;
justify-content: center;
margin-top: 0;
}

.button-container button:not(:last-child) {
margin-right: 5px !important;
}

/*Modals*/
.modal-form-container input,
.modal-form-container select,
.modal-form-container textarea,
.modal-form-container button {
width: 80%;
margin-bottom: 20px;
border: none;
border-radius: 5px;
}

.modal-form-container select {
height: 38px;
padding: 0 12px;
background-color: #ffffff;
font-size: 14px;
color: #111827;
border: 1px solid #d1d5db;
border-radius: 6px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
outline: none;
}

.modal-form-container input,
.modal-form-container textarea {
text-indent: 10px;
}

.modal-form-container textarea {
padding-top: 10px;
}

.input-group {
display: flex;
flex-direction: column;
align-items: center;
}

.input-group input {
height: 30px;
}

.input-group textarea {
height: 150px;
}

.select-wrapper {
position: relative;
width: 80%;
}

.select-wrapper select {
width: 100%;
}

.select-wrapper::after {
content: "▾";
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
color: #555;
pointer-events: none;
}

.input-group button:not(:first-child) {
background-color: #071426;
color: #ffffff;
}

.input-group button:hover {
color: #00b4d8;
}

.close-x {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
background-color: #fff;
width: 40px;
height: 40px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
transition: background .3s;
}

.close-x:hover {
background-color: red;
}

.close-x i {
font-size: 22px;
color: #071426;
}

.close-x i:hover {
color: #fff;
}

/*----------Dashboards------------*/
.dashboard-tabs-content { 
display: none; 
}
.dashboards-content-active { 
display: block; 
}

.user-management-content-container { 
display: none; 
}
.userManagementActiveContentContainer { 
display: block; 
}

.classes-content-info-container {
display: none;
padding: 15px;
background: #fff;
border-radius: 10px;
}

.classInfoActiveContent { 
display: block; 
}

.class-button-tab-info {
margin-right: 8px;
border: none;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
}

.classInfoActiveButton {
background-color: #0e1223;
color: #fff;
}

.classesButtonsActive {
background: #0e1223;
color: #fff;
}

.modal-container {
display: none;
position: fixed;
inset: 0;
justify-content: center;
align-items: center;
backdrop-filter: blur(5px);
background-color: rgba(7, 20, 38, 0.7);
z-index: 999;
}

.modal-form-container {
width: 500px;
max-width: 95%;
background-color: #b8bbc3;
border-radius: 5px;
padding: 30px;
position: relative;
box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.success-toast {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
background: #16a34a;
color: #fff;
padding: 12px 24px;
border-radius: 999px;
font-size: 0.95rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
z-index: 1000;
animation: toastInOut 3.5s ease-in-out forwards;
}

@keyframes toastInOut {
0% { opacity: 0; transform: translate(-50%, -20px); }
10%,80% { opacity: 1; transform: translate(-50%, 0); }
100% { opacity: 0; transform: translate(-50%, -20px); }
}

.flash-error {
background: #fee2e2;
color: #991b1b;
padding: 10px 15px;
border-radius: 5px;
display: inline-block;
}

.flash-success {
background: #d1fae5;
color: #065f46;
padding: 10px 15px;
border-radius: 5px;
display: inline-block;
}
.user-management-content-container .table-container thead {
position: sticky;
top: 0;
z-index: 1;
background: #0e1223;
color: #fff;
}

/*Custom Footer*/
.custom-footer{
display: flex;
justify-content: center;
background-color: #071426;
height: 60px;
border-top-left-radius: 20px;
border-top-right-radius:20px;
align-items: center;
font-style: italic;

}
.custom-footer p{
color: white;
font-weight: bold;
font-size: var(--font-size-h3);
text-decoration:underline;
transition: color 0.5s ease-in-out;

}
.custom-footer p:hover,.custom-footer p:active{
cursor: pointer;
color:#0d6efd;
}

/*Error Message design*/
.error_message {
display: flex;
justify-content:center;
margin: 20px auto;
}

.error_message p {
background: linear-gradient(135deg, #ff5f5f, #ff3838);
color: white;
padding: 16px 24px;
border-radius: 10px;
font-size: 15px;
font-weight: 600;
letter-spacing: .3px;
box-shadow: 0 6px 16px rgba(255, 50, 50, 0.4);
animation: popIn 0.28s ease-out;
display: inline-flex;
width:40%;
justify-content: center;
font-style: italic;
}

@keyframes popIn {
from { transform: translateY(-10px); opacity: 0; }
to   { transform: translateY(0); opacity: 1; }
}

.error_message i{
margin-right:5px;
font-size: 18px;
}

.birthAct label,
.transcript label {
display: block;
width: 100%;
height: 100%;
cursor: pointer;
}

.file-box {
border: 2px dashed #bbb;
padding: 20px;
border-radius: 10px;
cursor: pointer;
transition: 0.2s ease;
}
.file-box:hover {
background: #f1f1f1;
border-color: #999;
}
.file-click-zone {
display: flex;
flex-direction: column;
gap: 6px;
cursor: pointer;
}
.file-title {
font-weight: 600;
}
.file-name {
font-style: italic;
color: #444;
}

/*Quiz Welcome page*/
.welcome-main-container{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
padding: 20px 300px;
background: linear-gradient(180deg, #071322, #0a1d33);
flex-wrap: wrap;
}

.quiz-welcome-header-container{
display: flex;
justify-content:space-between;
height: 60px;
color: #071426;
width:100%;
align-items:center;
padding: 0px 20px;
width: 100%;
color: white;


}


.quiz-welcome-grid-container {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: repeat(3,220px);
grid-template-areas:
"welcome welcome welcome welcome"
"information information rules rules"
"confirmation confirmation rules rules";
column-gap: 40px;
row-gap: 30px;
}

.quiz1 { grid-area: welcome; }
.quiz2 { grid-area: information;}
.quiz3 { grid-area: rules; }
.quiz4 { grid-area: confirmation;  }

.quiz1,.quiz2,.quiz3{
border-radius:10px;
padding:var(--spacing-md);

}
.quiz3 h2{
margin-bottom: 50px;
}
.quiz-welcome-grid-container h2{
margin-bottom:20px;
text-align:center;
}
.quiz-welcome-grid-container p , .quiz-welcome-grid-container ul li{
line-height: 30px;
}
.quiz-welcome-grid-container ul{
list-style:decimal;
}
.quiz1 p{
text-align:center;
}
.quiz-card {

backdrop-filter: blur(12px);
border-radius: 18px; 
box-shadow: 0 18px 30px rgba(15, 23, 42, 0.45);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0px 5px 3px 0px #094db1; 
color: white; 

}
.start-quiz-button{
background-color: #094db1;
margin-top: 20px;
width: 300px;
border-radius: 15px;
height: 40px;
font-size: 18px;
transition: transform 0.5s ease-in-out;
}
.quiz4 p{
text-align:center;
}
.quiz3 h2{
margin-bottom: 40px;

}
.quiz3{
padding:40px;
}
.quiz4{
display: flex;
justify-content: center;
flex-wrap:wrap;
flex-direction: column;
align-items:center;
border-radius:10px;
}
.start-quiz-button:hover, .start-quiz-button:active{
background-color: #00c3ff;
transform: translateY(-2px) scale(1.05);
box-shadow: 0 8px 20px rgba(0, 180, 216, 0.5);
}

.quiz-footer{
width: 100% !important;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background-color: white;
padding: 0px 0px !important;
height: 40px;
margin-top:27px;

}
.quiz-footer p{
color:#071322 !important;
}
/* Quiz exam page */
.quiz-main-container {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 300px;
background: linear-gradient(180deg, #071322, #0a1d33);
flex-wrap: wrap;
}
.quiz-main-container {
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
background: #071322;
padding: 40px 16px;
}
.quiz-header-container {
display: flex;
justify-content: space-around;
align-items: center;

height: 60px;
width: 400px;
color: #fff;
margin-bottom: 24px;
}
.header-center{
width: 100px;
}
.header-center img{
width: 100%;
}
.header-center h2{
font-size: var(--font-size-body2);
font-family: var(--font-body);
font-weight: normal;
text-align: center;
}
.back-to-main-button{
padding: 0 10px !important;
cursor: pointer;
}
.submit-btn-container{
width: 100%;
display: flex;
justify-content: center;
}
.submit-btn-container .submit-btn-quiz{
width: 100%;
background-color: #071322;
color: white;
height: 45px;
cursor: pointer;
}
.question-answers-grid {
background-color: #f4f4f7;
width: 400px;
max-width: 100%;
height: 700px;
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
border-radius: 20px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 24px;
margin-top: -20px;
}
.timer{
display: flex;
align-items: center;
}
.timer .timer-title{
margin-right: 10px;
}
.timer .progress-container {
height: 10px;              
width: 310px;
display: flex;
align-items: center;
margin-right: 10px;
}
.timer .progress-container progress {
width: 100%;
height: 100%;
appearance: none;
-webkit-appearance: none;
border: none;
border-radius: 10px;
}
#quizProgress::-webkit-progress-bar {
background-color: #e5e7eb;
}

#quizProgress::-webkit-progress-value {
background-color: #2563eb;
}
#quizProgress::-moz-progress-bar {
background-color: #2563eb;
}
.question-answer1-grid {
background-color: #FFFFFF;
height: 400px;
max-height: 100%;
border-radius: 18px;
display: flex;
justify-content: center;
align-items: center;
padding: 24px;
text-align: center;
}
.question-answer1-grid p {
font-weight: 700;
font-size: 24px;
color:#0F172A;
}
.question-answer1-grid p

.answers-flex-container {
display: flex;
flex-direction: column;
gap: 16px;
}
.answer-card {
width: 100%;
height: 50px;
padding: 0 16px;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 16px;
background-color:#FFFFFF;
border-radius: 8px;
box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.15);
margin-bottom: 10px;
border: none;              
cursor: pointer;           
font-family: inherit;    
}
.answer-card:focus {
outline-offset: 2px;
background-color: #b0c8cf;
}
.answer-label {
font-weight: 600;
color: #6b7280;
}
.remaining-time span{
color: #0F172A;
}
.answer-text {
flex: 1;
text-align: center;
font-weight: 600;
}
.switch-flex-container {
margin-top: auto;
display: flex;
justify-content: center;
gap: 30px;
}
.nav-btn {
height: 40px;
width: 40px;
border-radius: 50%;
border: none;
background-color: #ffffff;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease,
          background-color 0.15s ease;
}
.nav-btn i {
color: #0d6efd;
}

.nav-btn:hover {
background-color: #0d6efd;
box-shadow: 0 6px 12px rgba(13, 110, 253, 0.4);
}
.nav-btn:hover i {
color: #ffffff;
}
.question-answers-grid{
box-shadow:0px 0px 6px 3px rgb(41, 41, 128);
}
/*Choose us Redesign*/
.choose-us-container{
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 180px);
gap: 30px;
justify-content: center;
}
.grid-element-1{
grid-column: span 2;
background-color: blue;
border-radius: 20px;
grid-row: span 2;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
background-color: white;
background: url('/images/choose-us/modernlearning.jpg');
background-position:center;
background-size:cover;
position: relative;
content:'';
}
.grid-element-2{
grid-column: span 1;
grid-row: span 3;
background-color: green;
border-radius: 20px;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
background-color: white;
background: url('/images/choose-us/community.jpg');
background-position:center;
background-size:cover;
position: relative;
content:'';
}
.grid-element-3{
grid-column:span 1;
background-color: #00c3ff;
border-radius: 20px;

box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
background-color: white;
background:url('/images/choose-us/path.jpg');
background-position:center;
background-size:cover;
position: relative;
content:'';
}
.grid-element-4{
grid-column:span 1;
background-color: #00c3ff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
background: #071426;
position: relative;
content:'';
display: flex;
justify-content: center;
background:url('/images/choose-us/tech.jpg');
background-position:center;
background-size:cover;
}
.grid-element-1 h2,
.grid-element-2 h2,
.grid-element-3 h2,
.grid-element-4 h2{
color: white;
}
.grid-element-1 p,
.grid-element-2 p,
.grid-element-3 p,
.grid-element-4 p{
color: white;
}
.grid-element-title{
  
  padding:20px;
  position: absolute;
  bottom: 0;
}
.grid-element-title h2{
  font-size: 20px;
}

/*New Hero UI*/
.new-hero-ui-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  
  }
.new-hero-ui {
width: 100%;
height: 80vh;

background: 
  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
  url('/images/STIapply.png');

background-position: center;
background-size: cover;
background-repeat: no-repeat;

border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
box-shadow:0px 10px 25px rgba(0,0,0,0.12);
animation: fadeIn 1s ease-in-out;
content:'';
position: relative;
padding: 60px 60px;

}
.new-hero-ui-left{
position: absolute;
bottom: 50px;
}
.new-hero-ui-left h1{
color: white;
font-size: 100px;
}

.new-hero-button-ui{
position: absolute;
width: 300px;
right:-90px;
height: 80px;
bottom: -22px;
}
.new-hero-button-ui button{
height: 100%;
background: #071322;
width: 100%;
border-top-left-radius: 40px;
border-top-right-radius: 0px;
border-bottom-right-radius: 40px;
border-bottom-left-radius: 0px;
border: 6px solid var(--color-background) !important;
font-size: 25px;
padding: 5px 20px;
}
@keyframes fadeIn{
from{
opacity: 0;
transform: translateY(20px);
}
to{
opacity: 1;
transform: translateY(0px);
}
}



.teacher-panel { 
display: none; 
}
.teacher-panel-active { 
display: block; 
}

.course-tab-content { 
display: none;
}
.course-tab-content-active { 
display: block; 
}

.basic-info h2,  
.basic-info span,
.tutor-info h2,
.tutor-info p,
.tutor-info span
{
margin-bottom:-5px!important;
}



    /*Mega Section CSSS*/
    .home-mega-section{
      width: 100%;
      background-color:rgb(10, 10, 39);
      height: 180vh !important;
      margin-top:30px;
      position: relative;
      overflow: hidden;
      z-index: 3;
    }
    .home-mega-section h1{
      margin: 50px 0px;
      
    }
    .home-mega-main-title{
      padding-top: 200px;
      color: white;
    }
    .home-mega-section::before{
      content: '';
      z-index: 10;
      background-color: var(--color-background);
      position: absolute;
      width: 250%;
      top: -20%;
      left: -40px;
      transform: rotate(-7deg);
      
      height: 35vh;
    }
    .home-mega-section::after{
      content: '';
      z-index: 10;
      background-color: var(--color-background);

      position: absolute;
      width: 250%;
      height: 35vh;
      bottom: -20%;
      right: -40px;
      transform: rotate(-7deg);
      z-index: 0;
    }
    .home-mega-section h1,
    .home-mega-section h2,
    .home-mega-section h3,
    .home-mega-section p{
      color: white;
    }
    .home-mega-section h1{
      text-align: center;
    }

    .technology-section{
      display: grid;
      width: 100%; 
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(3,150px);
      gap: 10px;
      
    }
   
    .tech-grid-element .tech-grid-title{
        content: '';
        display: block;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
    .tech-grid-element{
      position: relative;
      border-radius: 25px;
    }
    .tech-grid-element:nth-child(1){
      background:url('/images/techenvironment.jpg');
      grid-column: span 3;
      grid-row: span 2;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .tech-grid-element:nth-child(1) h2{
      color: var(--main-blue);
    }
    .tech-grid-element:nth-child(2){
      background-color:var(--color-teal);
      grid-column: 1/2;
      grid-row: 3/4;
      position: relative;
      display: block;
    }
   
    .tech-grid-element:nth-child(3){
      background-color:var(--color-background);
      grid-column: 2/3;
      grid-row: 3/4;
    }
    .tech-grid-element:nth-child(3) h3,
    .tech-grid-element:nth-child(4) h3{
      color: var(--main-blue);
    }
    .tech-grid-element:nth-child(4){
      background-color:var(--color-background);
      grid-column: 3/4;
      grid-row: 3/4;
    }
    .tech-grid-element:nth-child(5){
      grid-column: span 4;
      grid-row: span 3;
      background-color:aqua;
      background: url('/images/hero-image.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
   
    .moncash-section{
      display: grid;
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(3,100px) !important;
      margin: var(--vertical-spacing) 0;
      grid-template-rows: repeat(2,200px);
      gap: 10px;
    }
    .moncash-section-element:nth-child(1){
       grid-column:span 4;
       grid-row: span 3;
       background:url('/images/online-payment.png');
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
        border-radius: 25px;
        position: relative;
    }
    .moncash-section-element:nth-child(1) h2{
       color: var(--main-blue);
    }
    .moncash-section-element:nth-child(2){
      grid-column:span 3;
      grid-row: span 3;
      background: url('/images/moncash.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      border-radius: 25px;
   }
   .moncash-section-element:nth-child(1) .moncash-section-text:nth-child(1){
      position: absolute;
      content:'';
      bottom: 20px;
      left: 20px;
   }
   .moncash-section-element:nth-child(1) .moncash-section-text:nth-child(2){
      position: absolute;
      content:'';
      bottom: 25px;
      left: 10px;
   }
   .moncash-section-element:nth-child(1) .moncash-section-text:nth-child(3){
      position: absolute;
      content:'';
      bottom: 10px;
      left: 10px;
   }

   .ourdevelopers-section img{
      width: 100%;
      height: 100%;
   }
   .ourdevelopers-section{
    display: flex;
    gap: 20px;
    grid-template-rows: repeat(3,100px) !important;
  
   }
    .ourdeveloper{
      height: 350px;
      z-index: 2;
    }
    .ourdeveloper h2,
    .ourdeveloper p,
    .ourdeveloper h3{
      color: rgb(10, 10, 39);
      font-weight: 400;
      line-height: 30px;
    }
    .ourdeveloper h2{
      font-weight: bold;
      margin-bottom: 50px;
      display:inline-block;
    }
    .ourdeveloper h3{
      margin-bottom: 20px;
      display:inline-block;
      margin-top: 20px;
    }
    .ourdeveloper-right{
      flex-basis: 60% !important;   
    }
    .ourdeveloper-left{
       flex-basis: 40% !important;
    }
    .skills{
      display: flex;
      width: 100%;
      height: 50px;
    }
    .ourdeveloper-right{
      position: relative;
    }
    .contact-info{
      width: 80%;
      display: flex;
      justify-content: space-between;
      box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
      padding: 10px 10px;
      border-radius: 10px;
      position: absolute;
      bottom: 20px;
      left: 40px;
      content:'';
    }
    .contact-info a{
     font-size: 25px;
     color:rgb(10, 10, 39);
     text-decoration: none;
    }

























/*-----------Responsive design------------------*/
@media only screen and (max-width:1241px){
  .hamburger-menu-container{
      width: 100%;
      height: 70px;
      position: fixed;
      background-color: rgb(10, 10, 39);
  }
  .hamburger-menu{
    
      transform: translateY(50%);
  }
  .navigation-bar a {
      font-size: 14px;
    }
  .hero-left{
      margin-right: 70px;
  }
  .hero-left h1{
      font-size: var( --font-size-h1);
      color: var(--color-white);
      font-family: var(--font-body);
      display: inline-block;
      margin-bottom: 0px;
  }
  }
  @media only screen and (max-width:1110px){
  .nav-left img {
      width: 80px;
      margin: 0;
    }
    .nav-left a{
      font-size: 11px;
    }
    .nav-center {
      display: flex;
      justify-content:space-between;
    }
  }
  
  @media only screen and (max-width: 1064px){
  .commentpostuler {
      flex-direction: column;
      align-items: center;
      gap: 60px;
      padding: 40px 20px;
      margin: 40px auto;
    }
  
    .commentpostuler-element {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: auto;
      position: relative;
    }
  
    .check {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: rgb(10, 10, 39);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      animation: checkAnim 0.5s ease forwards;
    }
  
    .line {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 5px;
      height: 0;
      background-color: rgb(10, 10, 39);
      animation: lineGrowVertical 0.5s ease forwards;
    }
  
    .commentpostuler-element:nth-child(1) .line { animation-delay: 0.8s; }
    .commentpostuler-element:nth-child(2) .line { animation-delay: 1.8s; }
    .commentpostuler-element:nth-child(3) .line { animation-delay: 2.8s; }
    .commentpostuler-element:nth-child(4) .line { animation-delay: 3.8s; }
  
    .commentpostuler-element:last-child .line {
      display: none;
    }
  
    @keyframes lineGrowVertical {
      from {
        height: 0;
        background-color: rgb(10, 10, 39);
      }
      to {
        height: 60px;
        background-color: limegreen;
      }
    }
  
    .commentpostuler-element span {
      font-size: 14px;
      margin-top: 8px;
    }
  
    .commentpostuler-element p {
      font-size: 13px;
      max-width: 240px;
      text-align: center;
      padding-top: 10px;
    }
  .hero{
      padding: 5% 5%;
  }
  .navigation-bar {
      padding: 0 5%;  
    } 
  .hero-right img{
    width: 400px;
    height: 400px;
  }
  }

  @media only screen and (max-width: 930px){
  /*Tablet Sizing*/

  /*
  .commentpostuler {
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 40px 20px;
      margin: 5% auto;
    }
  
    .commentpostuler-element {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: auto;
      position: relative;
    }
    .commentpostuler-element .line {
      position: absolute;
      top: 15px;
      left: 50%;
      height: 5px;
      width: 0; 
      background-color: rgb(10, 10, 39);
      z-index: 1;
      animation: lineGrow 0.5s ease forwards;
      transform: translateX(10px); 
    }
    
    @keyframes lineGrow {
      from { width: 0; background-color: rgb(10, 10, 39); }
      to { width: 60px; background-color: limegreen; }
    }
    
  
  .why-choose-us {
      grid-template-columns: repeat(2, 1fr);
      padding: 40px 5%;
    }
  .explore-grid-container {
      grid-template-columns: repeat(2, 1fr); 
      grid-auto-rows: 180px;
    }
  
    .grid-item:nth-child(1),
    .grid-item:nth-child(4) {
      grid-column: span 2;
    }
  
  .subtitled-wrapper{
  margin-top: 10px;
  }
  .subtitled-wrapper .subtitle1,.subtitled-wrapper .subtitle2{
  font-size: 15px;
  }
  .hero-button-wrapper{
  margin-top: -20px;
  
  }
  .hero-right img{
      width: 300px;
      height: 300px;
      margin-top: 20%;
  }
  .hero{
      padding: 5% 5%;
  }
  .nav-center a{
  font-size: 12px;
  }
  .button.contact {
  width: 100px;
  font-size: 12px;
  }
  */
  
  .button.connexion {
  width: 120px;
  font-size: 12px;
  }
  
  .navigation-bar{
  position: fixed;
  right: -400px;
  top: 0;
  display: block;
  width: 400px;
  height: 100vh;
  background-color:#6B7280;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  }
  .navigation-bar.open-navigation-bar{
  right: 0;
  opacity: 1;
  visibility: visible;
  }
  .hamburger-menu{
  display: flex;
  width: 40px;
  height: 35px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position:absolute;
  top: 5%;
  right: 5%;
  background: rgb(208, 204, 204);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  }
  .hamburger-menu div{
  width: 80%;
  border: 2px solid white;
  }
  .nav-left{
  justify-content: center;
  }
  .nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;   
  }
  
  .nav-center a {
  width: 80%;
  padding: 12px 0;
  text-align: center;
  font-size: 16px;
  
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  }
  .nav-left img{
    width: 200px;
  }
  .nav-right{
    margin-top: 10%;
  }
  .nav-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-right a{
    width: 80%;
    height: 40px;
  }
  .contact {
    color:#071426 !important;
    background: white !important;
    width: 120px;
  }
  
  }


    





  @media only screen and (max-width: 970px){

    /*Tablet-Size*/
    .hero,
    .explore-tab-ui,
    .why-choose-us,
    .filieres-wrapper,
    .commentpostuler,
    .testimonial-container,
    .testimonial-wrapper,
    .ourpartners-wrapper,
    .choose-us-container,
    .home-mega-section{
    width:100%;
    padding: 0px 30px !important;
    }
    
    .explore-tab-ui,
    .choose-us-container,
    .testimonials-wrapper,
    .ourpartners-wrapper,
    .filieres-wrapper,
    .commentpostuler{
     margin: 50px 0px;
    }

.tabs-content.tabs-content-active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3,120px) !important;
  justify-content: center;
  gap: 10px;
  width: 100%;

}

/*Choose us Redesign*/
.choose-us-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 120px);
  gap: 10px;
  }
 
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    padding: 0px ;
    width:100%;
    justify-content: center;
    margin-top: var(--vertical-spacing);
    } 
    .testimonial-element {
    height: 500px;
    }   
    /* Testimonial Text */
    .testimonial-text {
      width: 100%;
      z-index: 5;
      } 
      .testimonial-text p {
      max-width: 230px;
      max-height: 100px;
      overflow: hidden;
      display: inline-flex;
      }
      /*New Hero UI*/
.new-hero-ui-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  
  }
.new-hero-ui {
width: 100%;
height: 75vh;

}

.new-hero-ui-left h1{
color: white;
font-size: 70px;
}



 



      /*Mega Section CSSS*/
    .home-mega-section{
      width: 100%;
      background-color:rgb(10, 10, 39);
      height: 220vh;
    }
    .home-mega-section h1{
      margin: 50px 0px;
      
    }

    .home-mega-section::before{
      content: '';
      z-index: 10;
      background-color: var(--color-background);
      position: absolute;
      width: 250%;
      top: -20%;
      left: -40px;
      transform: rotate(-6deg);
      
      height: 43vh;
    }
    .home-mega-section::after{
      content: '';
      z-index: 10;
      background-color: var(--color-background);

      position: absolute;
      width: 250%;
      height: 43vh;
      bottom: -20%;
      right: -40px;
      transform: rotate(-6deg);
      z-index: 0;
    }
    .home-mega-section h1,
    .home-mega-section h2,
    .home-mega-section h3,
    .home-mega-section p{
      color: white;
    }
    .home-mega-section h1{
      text-align: center;
    }

    .technology-section{
      display: grid;
      width: 100%; 
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(5,90px);
      gap: 10px;
      
    }
    .technology-section h2{
      color: white !important;
    }
   
   
    .tech-grid-element{
      position: relative;
      border-radius: 25px;
    }
    .tech-grid-element:nth-child(1){
      background:url('/images/techenvironment.jpg');
      grid-column: span 3;
      grid-row: span 5;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }


    .tech-grid-element:nth-child(5){
      grid-column: span 4;
      grid-row: span 5;
      
      background: url('/images/hero-image.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .ourpartners-container{
      display: grid;
      grid-template-columns: repeat(3,80px);
      margin-top: 20px;
      box-sizing: border-box;
      justify-content: center;
      width: 100%;
      row-gap: 30px;
      column-gap: 200px;
      }
    .tech-grid-element:nth-child(2){
      display: none;

    }
    .tech-grid-element:nth-child(3){
      display: none;
    }
    .tech-grid-element:nth-child(3) h3,
    .tech-grid-element:nth-child(4) h3{
      color: var(--main-blue);
    }
    .tech-grid-element:nth-child(4){
      
      display: none;
    }
    .moncash-section{
      display: grid;
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(3,70px) !important;
      margin: var(--vertical-spacing) 0;
      gap: 10px;
    }
    
    

   .ourdevelopers-section{
    display: flex;
    gap: 10px;
    width: 100%;
   }
    .ourdeveloper{
      height: 300px;
      z-index: 2;
    } 
    .ourdeveloper h2,
    .ourdeveloper p,
    .ourdeveloper h3{
      color: rgb(10, 10, 39);
      font-weight: 400;
      line-height: 30px;
    }
    .ourdeveloper-right h2{
      font-weight: bold;
      margin-bottom: 30px !important;
      display:inline-block;
    }
    .ourdeveloper h3{
      display:inline-block; 
    }
    .ourdeveloper-right{
      flex-basis: 50% !important;   
    }
    .ourdeveloper-left{
       flex-basis: 50% !important;
    }
   
    .ourdeveloper-right{
      position: relative;
    }
    .contact-info{
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 10px 10px;
      border-radius: 10px;
      position: absolute;
      bottom: 0px;
      left: 0px;
      content:'';
    }
    .contact-info a{
     font-size: 25px;
     color:rgb(10, 10, 39);
     text-decoration: none;
    }
    .footer{
      height: auto;
      padding: 130px 10% 0 10%;
    }
  
    .footer-body{
      display: grid;
      grid-template-columns: repeat(2,1fr);
      row-gap: 40px;
    }
  
    .links-container{
      display: flex;
      flex-direction: column;     
      align-items: center;        
      justify-content: center;   
      text-align: center;
      border-right: none;
      padding: 0;
      line-height: 40px;
    }
  
    .links-container h2{
      text-align: center;
      width: 100%;
      margin-bottom: 12px;
    }
  
    .links-container a{
      display: block;            
      width: 100%;
      text-align: center;
    }
  
    .links-container-contact{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
  
    .links-container-contact h3{
      margin: 0;
      text-align: center;
    }
  
    .footer-end{
      position: relative;
      margin-top: 40px;
      text-align: center;
    }
  }
  

  @media only screen and (max-width: 792px){
   
    /*Phone Size*/
    .hero,
    .explore-tab-ui,
    .why-choose-us,
    .filieres-wrapper,
    .commentpostuler,
    .testimonial-container,
    .testimonial-wrapper,
    .ourpartners-wrapper,
    .choose-us-container,
    .home-mega-section{
    width:100%;
    padding: 0px 20px !important;
    }
    
    .explore-tab-ui,
    .choose-us-container,
    .testimonials-wrapper,
    .ourpartners-wrapper,
    .filieres-wrapper,
    .commentpostuler{
     margin: 30px 0px;
    }

    .tabs-content.tabs-content-active {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3,110px) !important;
      justify-content: center;
      gap: 5px;
      width: 100%;
    
    }
    
    /*Choose us Redesign*/
    .choose-us-container{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 110px);
      gap: 5px;
      
      }


      .testimonial-container {
        display: grid;
        grid-template-columns: repeat(2, 250fr);
        padding: 0px ;
        width:100%;
        justify-content: center;
        margin-top: var(--vertical-spacing);
        } 
        .testimonial-element {
        height: 450px;
        }   
        /* Testimonial Text */
        .testimonial-text {
          width: 100%;
          z-index: 5;
          } 
          .testimonial-text p {
          max-width: 230px;
          max-height: 100px;
          overflow: hidden;
          display: inline-flex;
          }

            /*Mega Section CSSS*/
    .home-mega-section{
      width: 100%;
      background-color:rgb(10, 10, 39);
      height: 220vh;
    }
    .home-mega-section h1{
      margin: 50px 0px;
      
    }

    .home-mega-section::before{
      content: '';
      z-index: 10;
      background-color: var(--color-background);
      position: absolute;
      width: 250%;
      top: -20%;
      left: -40px;
      transform: rotate(-6deg);
      
      height: 43vh;
    }
    .home-mega-section::after{
      content: '';
      z-index: 10;
      background-color: var(--color-background);

      position: absolute;
      width: 250%;
      height: 43vh;
      bottom: -20%;
      right: -40px;
      transform: rotate(-6deg);
      z-index: 0;
    }
    .home-mega-section h1,
    .home-mega-section h2,
    .home-mega-section h3,
    .home-mega-section p{
      color: white;
    }
    .home-mega-section h1{
      text-align: center;
    }

    .technology-section{
      display: grid;
      width: 100%; 
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(5,90px);
      gap: 10px;
      
    }
    .technology-section h2{
      color: white !important;
    }
   
   
    .tech-grid-element{
      position: relative;
      border-radius: 25px;
    }
    .tech-grid-element:nth-child(1){
      background:url('/images/techenvironment.jpg');
      grid-column: span 3;
      grid-row: span 5;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }


    .tech-grid-element:nth-child(5){
      grid-column: span 4;
      grid-row: span 5;
      
      background: url('/images/hero-image.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .tech-grid-element:nth-child(2){
      display: none;

    }
    .tech-grid-element:nth-child(3){
      display: none;
    }
    .tech-grid-element:nth-child(3) h3,
    .tech-grid-element:nth-child(4) h3{
      color: var(--main-blue);
    }
    .tech-grid-element:nth-child(4){
      
      display: none;
    }
    .moncash-section{
      display: grid;
      grid-template-columns: repeat(7,1fr);
      grid-template-rows: repeat(3,70px) !important;
      margin: var(--vertical-spacing) 0;
      gap: 10px;
    }
    
    
    /*

   .ourdevelopers-section{
    display: flex;
    gap: 10px;
    width: 100%;
    
    
  
   }
    .ourdeveloper{
      height: 300px;
      z-index: 2;
    }
    
    .ourdeveloper h2,
    .ourdeveloper p,
    .ourdeveloper h3{
      color: rgb(10, 10, 39);
      font-weight: 400;
      line-height: 30px;
    }
   
    .ourdeveloper-right h2{
      font-weight: bold;
      margin-bottom: 30px !important;
      display:inline-block;
    }
    .ourdeveloper h3{
      
      display:inline-block;
      
    }
    .ourdeveloper-right{
      flex-basis: 50% !important;   
    }
    .ourdeveloper-left{
       flex-basis: 50% !important;
    }
   
    .ourdeveloper-right{
      position: relative;
    }
    .contact-info{
      width: 100%;
      display: flex;
      justify-content: space-between;
      
      padding: 10px 10px;
      border-radius: 10px;
      position: absolute;
      bottom: 0px;
      left: 0px;
      content:'';
    }
    .contact-info a{
     font-size: 25px;
     color:rgb(10, 10, 39);
     text-decoration: none;
    }
    */

    .ourpartners-container{
      display: grid;
      grid-template-columns: repeat(3,80px);
      margin-top: 20px;
      box-sizing: border-box;
      justify-content: center;
      width: 100%;
      row-gap: 30px;
      column-gap: 50px;
      }

      .new-hero-ui-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
        
        }
      .new-hero-ui {
      width: 100%;
      height: 65vh;
      
      }
      
      .new-hero-ui-left h1{
      color: white;
      font-size: 50px !important;
      }
    }
    @media only screen and(max-width: 766px){
    .commentpostuler {
        padding: 30px 10px;
      }
    
      .check {
        width: 26px;
        height: 26px;
        font-size: 12px;
      }
      .commentpostuler-element span {
        font-size: 14px;
      }
    
      .commentpostuler-element p {
        font-size: 13px;
      }
    
      .commentpostuler-element .line {
        height: 3px;
      }
    .table thead {
        display: none;
      }
    
      .table,
      .table tbody,
      .table tr,
      .table td {
        display: block;
        width: 100%;
      }
    
      .table tr {
        background: white;
        margin-bottom: 25px;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
      }
    
      .table td {
        border: none;
        padding: 12px 10px;
        position: relative;
      }
    
      .table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #229ea0;
        font-size: 15px;
        margin-bottom: 4px;
      }
    
      .table td ul {
        padding-left: 18px;
        margin-top: 5px;
      }
    
    .why-choose-us{
        grid-template-columns: repeat(2, 1fr);
    }
    }
    @media only screen and (max-width: 768px){
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      .commentpostuler {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 60px;
      }
    
      .commentpostuler-element {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
      }
    
      .commentpostuler-element .line {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 5px;
        height: 0;
        transform: translateX(-50%);
        animation: lineGrowVertical 0.6s ease forwards;
      }
    
      /* Hide last line */
      .commentpostuler-element:last-child .line {
        display: none;
      }
    
      @keyframes lineGrowVertical {
        from {
          height: 0;
          background-color: rgb(10, 10, 39);
        }
        to {
          height: 60px;
          background-color: limegreen;
        }
      }
    
      .check {
        z-index: 2;
        animation: checkAnim 0.5s ease forwards;
      }
    
      .commentpostuler-element span {
        font-size: 14px;
      }
    
      .commentpostuler-element p {
        font-size: 13px;
        max-width: 250px;
        padding-top: 10px;
        text-align: center;
      }
    
    .explore-grid-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
      }
    
      .grid-item:nth-child(1),
      .grid-item:nth-child(2),
      .grid-item:nth-child(3),
      .grid-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 2;
      }
    .hero{
        padding: 5% 10%;
        display: flex;
        flex-direction: column;    
    }
    .hero-right{
    max-width: 100%;
    }
    .hero-left{
      max-width: 100%;
      margin-top: 100px;
      margin-right: 0;
    }
    
    .hero-left h1{
        font-size: 30px;  
    }
    .hero-left .subtitle1{
        font-size: var(--font-size-h3);
        
    }
    .hero-left .subtitle2{
        font-size: var(--font-size-h3);
    }
    .hero-right img{
        height: 100%;
        width: 100%;
        margin-top: 10%;
    }
    .close-x {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        cursor: pointer;
        z-index: 9999;
      }
      .close-x div {
        position: absolute;
        width: 20px;
        height: 2.5px;
        background-color: white;
        border-radius: 3px;
      }
      .line2 {
        display: none;
      }
      .line1 {
        transform: rotate(45deg);
      }
      .line3 {
        transform: rotate(-45deg);
      }
    
        .why-choose-us {
          grid-template-columns: 1fr;
          padding: 30px 5%;
        }
      
    }
    
    @media only screen and (max-width: 742px){
    
      .why-choose-us{
        grid-template-columns: repeat(2,1fr);
      }
    }
    @media only screen and (max-width: 750px){
    .why-choose-us{
        grid-template-columns: repeat(2,1fr);
      }
    }
    
    @media only screen and (max-width: 536px){
    
    .why-choose-us{
        grid-template-columns: 1fr;
      }
    }
    
    @media only screen and (max-width: 999px){
    .commentpostuler-element{
    padding: 0;
    }
    }




    


