@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}

::selection {
    color: wheat;
    background-color: var(--main-color);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #91f5d7;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
}

:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(220, 68%, 54%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(220, 48%, 28%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(220, 100%, 99%);
    --footer-color: #efefef;
    --form-color: #f3f3fd;
    --medsnake-color: #99B9FF;
    --main-color: #353590;
    --second-color: #26D6A5;
    --subtitle-color: #8d8d8d;
    /*========== Font and typography ..bash 3rftina mahankhdmoush behom ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Poppins", sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight .. bash 3rfti hadu maghaykhdmoush lina .. lah reby shedani lshi dev web==========*/
    --font-medium: 500;
    --font-semi-bold: 700;
}

@media screen and (min-width: 1024px) {
     :root {
        --normal-font-size: 1rem !important;
        --small-font-size: .875rem !important;
        --smaller-font-size: .813rem !important;
    }
}
html, body {
    overflow-x: hidden;
    width: 100%;
  }
  
body {
    
    
 
      
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    height: 100%!important;
    overflow-x: hidden;
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}


/*__________________________________________________________________________________________________________________________*/


/* Style tab links */

.tablink {
    background-color: var(--main-color);
    color: white !important;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.4em;
    position: relative;
    width: 25%;
    text-decoration: none;
    font-weight: 500 !important;
    font-family: "Poppins", sans-serif !important;
}

.tablink:hover {
    background-color: var(--second-color);
    text-decoration: none;
    color: #fff !important;
}

.on {
    background-color: var(--second-color);
    text-decoration: none;
    color: #eee;
}


/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/


/*================================= nav .. header or whatever it is===================================================*/

ul {
    list-style: none !important;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.containerH {
    margin-inline: 1.5rem;
}


/*=============== HEADER ===============*/

.header {
    margin-top: 0;
    position: absolute;
    left: 0;
    width: 100% !important;
    box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
    background-color: var(--body-color);
    z-index: 10;
}


/*=============== NAV ===============*/

.nav {
    height: var(--header-height);
    width: 100%;
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    margin-right: 1em;
    transition: color 0.3s;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
    font-size: 2.25rem;
    color: var(--main-color);
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu {
        background-color: var(--body-color);
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        padding-block: 1.5rem 4rem;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }
    .nav__menu::-webkit-scrollbar {
        width: 0.5rem;
    }
    .nav__menu::-webkit-scrollbar-thumb {
        background-color: hsl(220, 12%, 70%);
    }
}

.nav__link {
    color: var(--main-color) !important;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    font-weight: 500 !important;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif !important;
}

.nav__link:hover {
    border-bottom: 4px solid #2ED4A6;
    color: #2ED4A6;
}

.current {
    border-bottom: 4px solid #2ED4A6;
    color: #2ED4A6 !important;
}


/* Show menu */

.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}


/* Show icon */

.show-icon .nav__toggle-menu {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
    opacity: 1;
    transform: rotate(90deg);
}


/*=============== DROPDOWN ===============*/

.dropdown__button {
    cursor: pointer !important;
}

.dropdown__arrow {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
    display: grid;
}

.dropdown__container {
    background-color: var(--first-color-lighten);
    height: 0;
    overflow: hidden;
    transition: height 0.4s;
}

.dropdown__content {
    row-gap: 1.75rem;
}

.dropdown__group {
    padding-left: 2.5rem;
    row-gap: 0.5rem;
}

.dropdown__group:first-child {
    margin-top: 1.25rem;
}

.dropdown__group:last-child {
    margin-bottom: 1.25rem;
}

.dropdown__icon i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.dropdown__title {
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.dropdown__list {
    row-gap: 0.25rem;
}

.dropdown__link {
    font-size: 1.25rem;
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: color 0.3s;
}

.dropdown__link:hover {
    color: var(--title-color);
}


/* Rotate dropdown icon */

.show-dropdown .dropdown__arrow {
    transform: rotate(180deg);
}


/*=============== BREAKPOINTS ===============*/


/* For small devices */

@media screen and (max-width: 300px) {
    .dropdown__group {
        padding-left: 1.5rem;
    }
}


/* For large devices */

@media screen and (min-width: 1118px) {
    /* Nav */
    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav__toggle {
        display: none;
    }
    .nav__list {
        display: flex;
        column-gap: 3rem;
        height: 100%;
    }
    .nav li {
        display: flex;
    }
    .nav__link {
        padding: 0;
        align-items: center;
    }
    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
    }
    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        background-color: var(--body-color);
        box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }
    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 6rem;
        max-width: 1120px;
        margin-inline: auto;
    }
    .dropdown__group {
        padding: 4rem 0;
        align-content: baseline;
        row-gap: 1.25rem;
    }
    .dropdown__group:first-child,
    .dropdown__group:last-child {
        margin: 0;
    }
    .dropdown__list {
        row-gap: 0.75rem;
    }
    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }
    .dropdown__icon i {
        font-size: 2rem;
    }
    .dropdown__title {
        font-size: 1.6rem;
    }
    .dropdown__link {
        font-size: 1.5rem;
    }
    .dropdown__link:hover {
        color: var(--first-color);
    }
    .dropdown__item {
        cursor: pointer;
    }
    .dropdown__item:hover .dropdown__arrow {
        transform: rotate(180deg);
    }
    .dropdown__item:hover>.dropdown__container {
        top: 5.5rem;
        opacity: 1;
        pointer-events: initial;
        cursor: initial;
    }
}
@media screen and (min-width: 1100px) {
    /* Nav */
    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav__toggle {
        display: none;
    }   
   .nav__list {
        display: flex
;
        column-gap: 16px;
        height: -1%;
    }
    .nav li {
        display: flex;
    }
    .nav__link {
        padding: 0;
        align-items: center;
    }
    /* Dropdown */
    .dropdown__button {
        column-gap: 0.25rem;
    }
    .dropdown__container {
        height: max-content;
        position: absolute;
        left: 0;
        right: 0;
        top: 6.5rem;
        background-color: var(--body-color);
        box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }
    .dropdown__content {
        grid-template-columns: repeat(4, max-content);
        column-gap: 6rem;
        max-width: 1120px;
        margin-inline: auto;
    }
    .dropdown__group {
        padding: 4rem 0;
        align-content: baseline;
        row-gap: 1.25rem;
    }
    .dropdown__group:first-child,
    .dropdown__group:last-child {
        margin: 0;
    }
    .dropdown__list {
        row-gap: 0.75rem;
    }
    .dropdown__icon {
        width: 60px;
        height: 60px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 1rem;
    }
    .dropdown__icon i {
        font-size: 2rem;
    }
    .dropdown__title {
        font-size: 1.6rem;
    }
    .dropdown__link {
        font-size: 1.5rem;
    }
    .dropdown__link:hover {
        color: var(--first-color);
    }
    .dropdown__item {
        cursor: pointer;
    }
    .dropdown__item:hover .dropdown__arrow {
        transform: rotate(180deg);
    }
    .dropdown__item:hover>.dropdown__container {
        top: 5.5rem;
        opacity: 1;
        pointer-events: initial;
        cursor: initial;
    }
}

@media screen and (min-width: 1152px) {
    .containerH {
        margin-inline: auto;
        margin-left: 0;
        margin-right: 0;
    }
    .nav__link:hover {
        border-bottom: 4px solid #2ED4A6;
        color: #2ED4A6 !important;
    }
}

.dropdown__button:hover {
    border-bottom: 4px solid #2ED4A6;
    color: #2ED4A6 !important;
}


/* === safeee baraka 3leh .. nzid feh nhar akher n9frha duzi l home ==============================================*/


/*---------------------------------------------------slider----------------------------------------------------------------------------------------*/
.myslide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%; 
    height: 100%;
    margin-left: 33%;
    object-fit: cover; /* Ensures the video fills the div without distortion */
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    .myslide video {
      width: 95%; 
      height: 100%;
      margin-left: 2%;
      object-fit: cover;
    }
  }
  @media screen and (max-width: 1496px) {
    .myslide video {
      width: 65%; /* Video width for 1496px */
      height: 100%;
      margin-left: 20%; /* Centers the video horizontally */
      object-fit: cover;
    }
  }
  
  /* Media query for screens 1200px or smaller */
  @media screen and (max-width: 1200px) {
    .myslide video {
      width: 40%; /* Video width for 1200px */
      height: 100%;
      margin-left: 25%; /* Centers the video horizontally */
      object-fit: cover;
    }
  }
.sign {
    float: right;
    line-height: 60px;
    margin-right: 40px;
}

.sign a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.act {
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 6px 15px;
}


/* slider & dots styling */

.slider {
    position: relative;
    width: 100%;
    margin-top: 0px;
    padding-top: 0px;
}

.myslide {
    height: 655px;
    display: none;
    overflow: hidden;
}


/*_______for large screens__________*/

@media only screen and (min-width: 2000px) {
    .myslide {
        height: 1000px;
        display: none;
    }
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: #fff !important;
    transition: 0.1s;
}

.prev:hover,
.next:hover {
    color: white !important;
}

.next {
    right: 0;
}

.dotsbox {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}


/* javascript */

.active,
.dot:hover {
    border-color: white;
    background-color: #3C3790;
    width: 13px;
    height: 13px;
}


/* /javascript */


/* muslide add fade */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 8s;
    animation-name: fade;
    animation-duration: 8s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}


/* /muslide add fade */


/* text styling and animating */

.txt {
    position: absolute;
    color: #fff;
    letter-spacing: 2px;
    line-height: 35px;
    top: 40%;
    left: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 3s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 1;
    font-family: "Poppins";
}

@-webkit-keyframes posi {
    from {
        left: 25%;
    }
    to {
        left: 15%;
    }
}

@keyframes posi {
    from {
        left: 25%;
    }
    to {
        left: 15%;
    }
}

.txt h1 {
    color: white;
    font-size: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.txt p {
    font-weight: bold;
    font-size: 20px;
}


/* img animating*/

#img {
    transform: scale(1.5, 1.5);
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 40s;
    animation-name: zoomin;
    animation-duration: 40s;
    opacity: 0.7;
}

@-webkit-keyframes zoomin {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}

@keyframes zoomin {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}


/* tablet */

@media screen and (max-width: 800px) {
    .myslide {
        height: 500px;
    }
    .txt {
        letter-spacing: 2px;
        line-height: 25px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-animation-name: posi2;
        -webkit-animation-duration: 2s;
        animation-name: posi2;
        animation-duration: 2s;
    }
    @-webkit-keyframes posi2 {
        from {
            top: 35%;
        }
        to {
            top: 50%;
        }
    }
    @keyframes posi2 {
        from {
            top: 35%;
        }
        to {
            top: 50%;
        }
    }
    .txt h1 {
        font-size: 40px;
    }
    .txt p {
        font-size: 13px;
    }
}


/* phone */

@media screen and (max-width: 520px) {
    .txt h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .sign {
        margin-right: 20px;
    }
    .sign a {
        font-size: 12px;
        text-decoration: none;
    }
}


/*_____________________________________________About_____________________________________________________*/

.about-text p {
    padding-top: 5%;
    font-size: medium;
    text-align: justify;
    text-justify: inter-word;
}

.about {
    padding-top: 1%;
    padding-bottom: 1%;
}

@media only screen and (min-width:1200px) {
    .img-fluid {
        height: 400px;
        width: auto;
    }
    .about-text p {
        padding-top: 7%;
        font-size: large;
    }
    .about {
        padding-top: 5%;
        padding-bottom: 6%;
    }
}

@media only screen and (min-width:1440px) {
    .about-text p {
        padding-top: 8%;
        font-size: 20px;
    }
    .about {
        padding-top: 9%;
        padding-bottom: 7%;
    }
}

@media only screen and (min-width:2000px) {
    .about-text p {
        padding-top: 8%;
        font-size: 25px;
    }
    .about {
        padding-top: 9%;
        padding-bottom: 7%;
    }
}


/* ______________________________________strength keys__________________________________________________________ */

#punch {
    max-height: 150px;
    padding-left: 45%;
    padding-right: 45%;
    padding-top: 20px;
    padding-bottom: 20px;
}

#pf {
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
}

.strengthK {
    background-color: white;

    border-radius: 12px; /* Rounded corners for a modern look */

    font-family: 'Arial', sans-serif; /* Modern font */
}

.strengthK h1 {
    font-size: 30px;
    font-weight: bold;
   
    margin-bottom: 25px;
    line-height: 1.4; /* Better readability */
}

.strengthK p {
    font-size: 20px;
    color: #555; /* Neutral text color */
    line-height: 1.6; /* Comfortable spacing */
}

/* Style for .molecule */
.molecule {
    margin-left: 3%;
    max-width: 90%;
    max-height: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 18px;
    background: #f9f9f9; /* Light gray background for contrast */
    box-shadow: 0 4px 8px rgb(0, 78, 102);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.molecule h1 {
    font-size: 25px;
    font-weight: bold;
    color: #333; /* Neutral text color */
    line-height: 1.4;
    margin-bottom: 10px;
}

.molecule p {
    font-size: 18px;
    color: #04007e; /* Slightly lighter text */
    line-height: 1.6;
}

.molecule:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}
@media screen and (max-width: 768px) {
    #three-dots-bar {
      display: none; /* Hide the second image on small screens */
    }
  }
/* Optional responsive styles */
@media (max-width: 768px) {
      #punch {
    max-height: 150px;
    padding-left: 25%;
    padding-right: 25%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Styles for the title */
  #pf {
    font-size: 50px;
    color: var(--main-color);
    font-family: 'Playfair Display', 'Times New Roman', Times, serif;
  }
    .molecule {
        padding: 15px;
        margin-left: 5%;
    }

    .molecule h1 {
        font-size: 1.5rem;
    }

    .molecule p {
        font-size: 0.9rem;
    }
}

.strengthK .col-md-4 {
    text-align: center; /* Center align for consistency */
    margin-bottom: 10px; /* Add space between rows */
}

#s-key1 h1, #s-key2 h1, #s-key3 h1 {
    color: #28a745; /* Distinct color for headings in each section */
}

@media (max-width: 768px) {
    .strengthK {
        padding: 30px 15px;
    }
    .strengthK h1 {
        font-size: 20px;
    }
    .strengthK p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .strengthK .col-md-4 {
        flex-basis: 100%; /* Full width on extra small screens */
    }
}

/*-------------------------------------------Nos Cycles--------------------------------------------------------*/

.cnt-C {
    margin: 0 3% 0 3%;
}

.imgT h5 {
    font-size: 17px;
}

.cycles p {
    font-size: 20px;
    color: black;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    justify-content: center;
}

.Title-s {
    float: right !important;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-right: 1%;
}

.nc {
    height: 100% !important;
    width: 100% !important;
}

.imgT {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    /* Fallback color */
    background: rgba(0, 0, 0, 0.5);
    /* Black background with 0.5 opacity */
    color: #f1f1f1;
    width: 95%;
}

.custom-underline::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: var(--main-color);
    margin-top: 4px;
}

@media screen and (min-width: 1500px) {
    .cycles p {
        font-size: 30px;
        padding-bottom: 5%;
    }
}


/*_________________________________activites parascolaires_____________________________________________________________*/

.MySlides {
    display: none
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 17px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dot1 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.Active,
.dot1:hover {
    background-color: #717171;
}


/* Fading animation */

.Fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px
    }
}


/*________________mot de president________________________________________________*/

.president-word {
    background-color: #3C3790;
    padding-bottom: 150px;
    width: 100%;
}

.Pw h2 {
    color: #2ED4A6;
    padding-top: 5px;
}

.Pw {
    padding-top: 3%;
    padding-left: 3%;
    overflow: hidden;
}

.card-text {
    font-size: 20px;
}

.p-pw {
    margin-left: 3%;
    margin-right: 3%;
}

@media screen and (min-width: 1500px) {
    .card-tex {
        font-size: 25px
    }
    .Pw {
        margin-left: 3%;
        overflow: hidden;
    }
}


/*lfoooooterrrrrrrrrrrrrrrrrrrrrr====================================================*/

.footer {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    margin-bottom: 0;
}

.social-icons {
    margin-top: 10px;
    font-size: large;
}

.social-icons a {
    margin: 0 10px;
    color: var(--main-color) !important;
    text-decoration: none;
}

.footer p {
    color: var(--main-color);
    font-size: large;
}


/* home page ended here safe baraka laykhlef..*/


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% suptech env %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: white;
    background-color: var(--main-color);
    text-align: center;
    cursor: pointer;
}

.hero-text button:hover {
    background-color: var(--second-color);
}


/*ewa ya lwatchers .. the trapezoid form isn't functionning ...*/


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Formations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.formation-title h3 {
    color: var(--main-color);
}
contact-heading
.formation-title {
    float: left !important;
    margin-left: 1%;
    margin-top: 6rem;
    margin-bottom: 5rem;
    /*this won't move smth in the custom underline class is forbiding it from moving        hihihiiiii it moved huhuhuhh */
}

.formation-title img {
    height: 5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
}


/*media queries*/

@media screen and (max-width:2000px) {
    .card-formations {
        height: 60rem !important;
    }
}

@media screen and (max-width:1440px) {
    .card-formations {
        height: 45rem !important;
    }
}

@media screen and (max-width:992px) {
    .card-formations {
        height: 55rem !important;
    }
}


/*media queries*/

.card h4 {
    text-align: center;
    text-decoration: none;
    margin-top: 20%;
}


/*---------card hover ---------------*/

.img-tree--left {
    z-index: 0;
    position: absolute;
    top: -100Px;
    left: 0px;
    width: 200px;
    height: 500px;
    object-fit: contain;
    transition: 600ms;
}

.img-tree--right {
    z-index: 0;
    position: absolute;
    top: -100Px;
    left: 0px;
    width: 250px;
    height: 500px;
    object-fit: contain;
    transition: 600ms;
    overflow: hidden;
}

.hoverarea:hover .img-tree--left {
    transform: scale(1.2) translateX(-70px) rotate(-20deg);
}

.hoverarea:hover .img-tree--right {
    transform: scale(1.2) translateX(70px) rotate(20deg);
}

.card-formations:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(44, 47, 240, 0.5);
}


/*-----------frows-----------------*/

.Frow {
    column-gap: auto;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between!important;
}

.Frow a {
    text-decoration: none;
}

.Frow h4 {
    color: var(--main-color);
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Poppins', 'Serif';
}


/*media queries*/


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%    Forms     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

/* Updated Legend Section */
.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 10rem;
    margin-bottom: 8rem;
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #26D6A5;
    text-decoration: none; /* Remove default underline */
    position: relative;
}

/* Glowing animated underline */
.contact-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #26D6A5;
    border-radius: 5px;
    opacity: 0;
    animation: neon-glow 2s infinite;
}

/* Animation for the glow effect */
@keyframes neon-glow {
    0%, 100% {
        opacity: 0;
        box-shadow: 0 0 0 #26D6A5;
    }
    50% {
        opacity: 1; /* Fully visible */
        box-shadow: 0 0 8px #26D6A5, 0 0 16px #26D6A5;
    }
}

/* Container for form and illustration */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Contact form wrapper */
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Contact form container */
.contact-email-form {
    flex: 1;
    max-width: 900px;
    padding: 1rem;
    background: rgb(214, 218, 189);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 5%;
}

/* Mail image styling */
.contact-image {
    width: 100%;
    max-width: 50%; /* Limit the max width to 50% of the container */
    height: auto;
    margin-right: 10px; /* Space between the image and the form */
}

/* Form fields styling */
.contact-email-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-email-form label {
    color: rgb(0, 0, 0);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.contact-email-form input,
.contact-email-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1.2rem;
    box-sizing: border-box;
}

.contact-email-form textarea {
    resize: none;
}

/* Button styling */
.contact-submit-btn {
    background: #6c63ff;
    border: none;
    border-radius: 5px;
    padding: 1.75rem 4.5rem;
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background: #4b47cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        width: 80%;
        margin-bottom: 1.5rem;
    }

    .contact-email-form {
        width: 100%;
    }
}

input::placeholder {
    font-size: 14px;
}

option {
    font-size: 14px !important;
}


/*input[type='radio'] {
    accent-color: var(--second-color); 
    border: 2px solid  var(--main-color) !important; 
    
    padding: 2px;
}*/



select.form-select {
    height: calc(2.25rem + 12px);
}

label {
    font-weight: 200 !important;
    color: var(--main-color);
    font-size: medium;
    font-style: normal;
    margin-top: 10px;
}

#label {
    font-weight: 200;
    color: var(--main-color);
    font-size: medium;
    font-style: normal;
    margin-top: 10px;
}

fieldset {
    border: 2px solid var(--second-color);
    border-radius: 15px;
    margin: 0;
    padding: 10px;
    padding-top: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    z-index: -50;
    margin-top: 10px;
}
#button-top{
    margin-bottom:30%;
    margin-top: 8%;
}
#register{
    margin-top:5%;
}
.bt-n {
    background-color: var(--second-color);
    color: white;
    border-radius: 5px;
    width: 205px;
    height: 50px;
    margin-top: 3%;
    font-size: medium;
    border: none;
}

.conTainer {
    margin: 0 auto;
    margin-top: 3%;
}

#test {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 5%;
}

.test {
    border-radius: 35px;
    padding-top: 1%;
    color: var(--second-color);
    font-weight: 500 !important;
    width: 90%;
    height: 2em;
    font-size: 25px;
    text-align: center;
}


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%documents%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.card {
    box-shadow: 0 0 15px rgba(71, 68, 243, 0.5);
    border-radius: 10%;
    min-height: 100px !important;
    min-width: 300px !important;
    padding: 5% 5% 5% 5%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.card-text {
    font-size: 16px;
    text-decoration: none !important;
    color: #3C3790;
    vertical-align: middle;
}

.docR {
    column-gap: 1.5rem;
}

.docs {
    margin-top: 3rem;
}


/*____________________________-concours planning____________________________________________________________________*/

.p-title {
    color: var(--main-color);
    font-size: 2.5rem !important;
    text-align: center;
    margin-top: 7rem;
    font-weight: 500 !important;
    margin-bottom: 7rem;
}

.l1 th {
    position: relative;
    background-color: #7777dd !important;
    color: white !important;
    font-size: 17px;
    font-weight: 400;
    vertical-align: center !important;
}

.l1 p {
    color: white;
    top: 0;
    text-align: end;
    font-size: 17px;
    font-weight: 400;
    padding-top: 5px !important;
}


/* !important kun kant t9dr kun jm3atha m3aya bshi tmrmi9a db
                                                         .. mosiba sf  */

td {
    border: 8px solid #efefef !important;
}

th {
    border: 8px solid #efefef !important;
    color: white !important;
}

.co1 {
    width: 305px;
    background-color: #90ebbd !important;
    font-size: 17px;
    font-weight: 400;
    color: #ffff !important;
}

.c-tab {
    margin-bottom: 10rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    background-color: #efefef;
}

tbody tr td {
    font-size: 1.5rem !important;
    color: #383838 !important;
}

th.diagonalFalling {
    background: linear-gradient(to right top, #7777dd 0%, #7777dd 49.9%, white, white 51%, #7777dd.1%, #7777dd 100%);
}


/*======================concours results========================================================*/

.resultsC {
    background-color: #e4e5e7;
    border-radius: 20px;
    border: 1px solid var(--main-color);
    padding-top: 3%;
    padding-bottom: 3%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    column-gap: 3rem;
    margin: 5rem 3rem 7rem 3rem;
    /*this part refuses to obay to his highness the justify-content query
                                              , but dw we'll push it with our full army till it does lyemaha */
}


/*zehahahaa gtlk ghn9aduha se7a hihiihhihiii */


/* now the margin refuses to be adjusted.. o ghankheliwha hkk ta yhdiha lah */

.session {
    box-shadow: 2px 2px 2px var(--main-color);
    background-color: white;
    border-radius: 15px;
    min-height: 100px;
    min-width: 300px;
    margin-top: 5%;
    margin-bottom: 5%;
}

.session h3 {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'Poppins', serif;
    text-align: center;
    padding-top: 3rem;
    color: #7777dd;
}

.sesT {
    padding-top: 1%;
    padding-bottom: 30px;
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
    height: 6rem;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Campuses %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.campus {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.heading h1 {
    padding: 1.5rem 1rem;
    margin: 2rem 0 0 0;
    color: white;
    font-size: 3rem;
    text-transform: uppercase;
    background: var(--second-color);
    width: fit-content;
}

h1.simple-clip {
    padding-right: 50px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

h1.complex-clip {
    padding-top: 20px;
    padding-right: 50px;
    width: 28rem;
    clip-path: polygon(0 0%, 90% 0, 100% 100%, 0% 100%);
}

#p {
    border: 4px solid var(--second-color);
    padding: 2rem 0.5rem 1.5rem;
    background-color: #f3f3fd;
    height: 70rem;
}

.camp li {
    color: var(--main-color);
}

.imgC {
    max-width: 225px;
    max-height: 190;
    opacity: 80%;
    z-index: -9;
    border-radius: 5px;
    max-height: 35rem;
    width: 100%;
}

.caption {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-left: 3rem;
    padding-right: 3rem;
    border-radius: 5%;
    color: var(--main-color);
    font-size: 2rem;
}

.links a {
    font-style: normal;
    text-decoration: none;
    color: var(--main-color) !important;
    font-size: 1.5rem;
}

.links a:hover {
    font-size: large;
    font-style: normal;
    text-decoration: none;
    color: var(--main-color);
}

.C-heading {
    margin-top: 4rem;
    margin-bottom: 4rem;
    color: var(--second-color);
    padding-top: 1%;
    padding-bottom: 30px !important;
    border-bottom: solid 1px var(--second-color);
    width: 20rem;
    font-weight: 500;
}

.cmp p {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-left: 3rem;
    padding-right: 3rem;
    border-radius: 5%;
    color: var(--main-color);
    font-size: 2rem;
}

.cmp img {
    padding-top: 4rem;
}

.facilities {
    margin-bottom: 10rem;
}


/* #################################FORMATION CONTINUE #######################################*/

.hero-imagefc {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
    width: 100%;
    background-color: black;
    position: relative;
    display: flex;
    justify-content: left;
    align-content: left;
    color: white;
    z-index: 10;
}

.hero-imagefc img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
    width: 100%;
    position: relative;
    opacity: 70%;
    display: flex;
    justify-content: left;
    align-content: left;
    color: white
}

.hero-textfc {
    text-align: left;
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-textfc button {
    border: none;
    border-radius: 5px;
    position: relative;
    padding: 10px 20px;
    color: white;
    background: var(--main-color);
    text-align: center;
    cursor: pointer;
    font-size: 1.5rem !important;
    font-weight: 500;
    overflow: hidden;
}

.Shape1 {
    top: 0;
    position: absolute;
    background: #a69df881;
    width: 30px;
    height: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: translateX(-170%);
    animation: moveShape 1s infinite alternate;
}

@keyframes moveShape {
    0% {
        transform: translateX(-170%);
    }
    100% {
        transform: translateX(400%);
    }
}

.hero-textfc button:hover {
    background: var(--second-color);
    scale: 1.05;
    transition: all 0.5s;
}

@media screen and (max-width: 600px) {
    .hero-textfc h6 {
        padding-left: 1rem !important;
    }
}


/* ################ Infos in formation continue ################ */

.Infos {
    position: absolute;
    top: 50%;
    /* Adjust as needed */
    right: 0;
    transform: translateY(-50%);
    height: auto !important;
    display: inline-block !important;
    background-color: rgba(255, 255, 255, 0.8);
    /* Use rgba to set the background color with transparency */
    padding: 3% 3% 3% 3%;
    margin-right: 5%;
    align-content: left;
    backdrop-filter: blur(5px);
}

#icons {
    color: var(--main-color);
}

.Infos_content-wrapper {
    color: var(--main-color);
    align-items: center;
}

.Infos_content-wrapper h5,
.Infos_content-wrapper p {
    font-size: 1.7rem;
    display: block;
}

.Infos_icon-box {
    position: relative;
    align-items: center;
}

.containerB {
    max-width: 140rem;
    width: 90%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    justify-content: center;
    margin-bottom: 10%;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
}

.wrapper {
    display: flex;
}

.indicator {
    padding: 1.5rem 0;
    border-right: 1px solid var(--main-color);
}

.indicator li {
    display: flex;
    align-items: center;
    grid-gap: .5rem;
    padding: 10px 2rem;
    cursor: pointer;
    font-size: 1.75rem;
    color: var(--main-color);
    border-right: 3px solid transparent;
}

.indicator li i {
    font-size: 1.75rem !important;
}

.indicator li:hover {
    background: #f6f7ff;
}

.indicator li.ActIve {
    border-right-color: var(--second-color);
    color: var(--second-color);
    background: #f6f7ff;
}

.content {
    padding: 1.5rem 2rem;
}

.content li {
    display: none;
}

.content li.ActIve {
    display: block;
}

.content li h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1.75rem;
}

.content li p {
    margin-bottom: .5rem;
    color: var(--main-color);
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .wrapper {
        flex-direction: column;
    }
    .indicator {
        border-right: none;
    }
    .containerB {
        margin-bottom: 28%;
    }
}

#text_fc1 {
    padding: 1% 4% 1% 4%;
    margin-top: 5%;
    color: black;
    font-size: 2rem;
}

#text_fc2 {
    padding: 1% 4% 1% 4%;
    margin-top: -1.5% !important;
    color: black;
    font-size: 2rem;
    margin-bottom: 10%;
}


/* small screens */

@media screen and (max-width: 1018px) {
    .hero-textfc {
        font-size: 1rem !important;
    }
    .Infos {
        right: 5%;
        width: 180px;
        font-size: small;
        height: min-content !important;
        margin-right: 0 !important;
    }
    #text_fc1 {
        font-size: small;
    }
    .Infos_content-wrapper h5,
    .Infos_content-wrapper p {
        font-size: small;
    }
    .hero-imagefc img {
        height: 400px;
    }
}

@media screen and (max-width: 600px) {
    .hero-textfc h6 {
        margin-left: -10% !important;
        text-align: left;
        position: relative;
        top: -78px !important;
        /* Adjust the top position as needed */
        transform: translateX(-2%);
    }
    .Infos {
        margin-right: -3% !important;
        margin-top: 10%;
    }
    .hero-textfc button {
        margin-left: -3% !important;
    }
}

@media only screen and (max-width: 320px) {
    .hero-textfc h6 {
        margin-left: -10% !important;
        text-align: left;
        position: relative;
        top: -78px !important;
        /* Adjust the top position as needed */
        transform: translateX(-2%);
    }
    .Infos {
        margin-right: -3% !important;
        margin-top: 20%;
    }
    .hero-textfc button {
        margin-left: -3% !important;
        width: 100px;
    }
}

.hero-textfc button {
    margin-top: 5rem;
}


/* ############ bourse text ########*/

.shiny-text {
    padding: 1.5% 1.5% 1.5% 1.5%;
    text-align: center !important;
    margin-top: 6%;
    font-size: 36px;
    color: #ffffff;
    position: relative;
    border-radius: 30px;
    animation: shine 2s infinite linear;
}

@keyframes shine {
    0% {
        box-shadow: 0 0 5px #63ddba;
    }
    50% {
        box-shadow: 0 0 20px #63ddba, 0 0 22px #26D6A5;
    }
    100% {
        box-shadow: 0 0 5px #63ddba;
    }
}


/*popup msg*/