/*
  Theme Name: Iscs
  Theme URI: http://example.com
  Author: Nabil Lagram
  Author URI: http://example.com
  Description: A custom theme for WordPress.
  Version: 1.0
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
  Tags: custom-theme, theme
  Text Domain: my-custom-theme
*/


:root { 
  --main-color: #1a76d1;
  /* --main-color: #275b77; */
  --main-color-alt: #0659bb;
  /* --main-color-alt: #7ebdca; */
  --primary-color: #F18B3D;
  
}

body {
  font-family: "Cairo", sans-serif;
  background-color: #fff;
}



/* start scroll */
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color-alt);
}
/* end scroll */


/* ==================> Start navbar */
    /* Topbar */
.header .topbar{
	background-color:#fff;
	border-bottom:1px solid #eee;
}
.header .topbar{
	padding:15px 0;
}
.header .topbar p{
  margin: 0;
  font-weight: 500;
}
.header .top-link{
	float:left;
}
.header .top-link li{
	display:inline-block;
	margin-right:15px;
}
.header .top-link li:last-child{
	margin-right:0px;
}
.header .top-link li a{
  color: #2C2D3F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.header .top-link li:hover a{
	color:#1A76D1;
}
.header .top-contact{
	float:right;
}
.header .top-contact li{
	display:inline-block;
	margin-right:25px;
	color:#2C2D3F;
}
.header .top-contact li:last-child{
	margin-right:0;
}
.header .top-contact li a{
	font-size:14px;
  text-decoration:none;
  color: #2C2D3F;
}
.header .top-contact li a:hover{
	color:#1A76D1;
}
.header .top-contact li i{
	color:#1A76D1;
	margin-right:8px;
}
@media (max-width: 768px) {
    /* .header .top-contact, .header .top-link {
      float: none;
      text-align: center;
    }
    .header .top-link {
      margin-bottom: 10px !important;
    } */
    .header .topbar {
      display: none;
    }
}
    /* end topbar */
.navbar {
  background-color: var(--main-color) !important;
  padding: 0;
}
.navbar-brand img {
  width: 57px;
} 
.navbar .nav-link {
  color: white;
  transition: 0.3s;
  padding: 17px 20px !important;
  text-wrap: nowrap;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-link:hover {
  /* background-color: var(--main-color-alt); */
  border-bottom: 3px solid #fff;
}
.dropdown-toggle::after {
  position: relative;
  top: 2px;
  top: 3px;
}
.navbar-nav .dropdown-menu {
  min-width: 260px;
  top: calc(100% - 3px);
  border-radius: 0;
  border: none;
  padding: 0;
  background-color: var(--main-color-alt);
  border-left: 7px solid;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px;
  border-radius: 0;
  color: #fff;
  transition: 0.3s;
}
.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--main-color);
  color: #fff;
  padding-left: 18px;
}
.navbar-nav ul:last-child .dropdown-menu:last-child {
  right: 0;
  left: auto;
}
@media (max-width : 768px ) {
  .navbar .navbar-collapse {
    justify-content: center;
    padding-bottom: 20px;
  }
  .header.fixed-top {
    position: static;
}
}

/* ==================> End navbar */
/* start page */
.page {
  min-height: 60vh;
  padding: 60px 0;
  margin-top: 89px;
}
/* end page */


/* =====================================> Start Homepage */
.homepage {
  margin-top: 89px;
}
@media (max-width: 768px) {
  .homepage {
    margin-top: 0;
  }
}
.homepage .section {
  padding: 60px 0;
}
.homepage .single-post {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.homepage .single-post .single-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 600px;
}
@media (max-width: 991px) {
  .homepage .single-post .single-slider {
    height: 380px;
  }
}
.homepage .single-post .single-slider::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(26,118,209,0.4767156862745098) 0%, rgba(255,255,255,0.5747549019607843) 100%);
    opacity: 0.5;
    z-index: 1;
}
.homepage .single-post img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
/* ========================== */
.homepage .single-post .single-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.homepage .single-post .single-slider .text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  width: 75%;
  animation: slideInLeft 1s ease-in-out;
  z-index: 2;
}

.single-post .single-slider .text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.single-post .single-slider .text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.single-post .single-slider .button {
  display: flex;
  gap: 1rem;
}

.single-post .single-slider .btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.single-post .single-slider .btn-primary {
  background-color: #007bff;
  color: #fff;
}

@keyframes slideInLeft {
  from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0);
  }
}
/* =======> reponisve slider text  */
@media (max-width: 768px) {
  .single-post .single-slider .text {
      left: 8%;
      max-width: 90%;
  }

  .single-post .single-slider .text h1 {
      font-size: 2rem;
  }

  .single-post .single-slider .text p {
      font-size: 0.9rem;
  }

  .single-post .single-slider .button {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
  }

  .single-post .single-slider .btn, .btn-primary {
      padding: 5px 10px;
  }
}

/* ===============> end responsive slider text */
/*===========================
	Start Hero Area CSS
=============================*/
.slider .single-slider {
	height: 600px;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
}
.slider .single-slider .text{
	margin-top:120px;
}
.slider.index2 .single-slider .text{
	margin-top:150px;
}
.slider .single-slider h1 {
	color: #2C2D3F;
	font-size: 38px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 42px;
}
.slider .single-slider h1 span{
	color:#1a76d1;
}
.slider .single-slider p {
	color: #2C2D3F;
	margin-top: 27px;
	font-weight: 400;
}
.slider .single-slider .button{
	margin-top:30px;
}
.slider .single-slider .btn{
	color:#fff;
	background:#1a76d1;
	font-weight:500;
	display:inline-block;
	margin:0;
	margin-right:10px;
}
.slider .single-slider .btn:last-child{
	margin:0;
}
.slider .single-slider .btn.primary{
	background:#2C2D3F;
	color:#fff;
}
.slider .single-slider .btn.primary:before{
	background:#1A76D1;
}
.slider .owl-carousel .owl-nav {
	margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
	margin-top:-25px;
}
.slider .owl-carousel .owl-nav div {
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	background: #1A76D1;
	color: #fff;
	font-size: 26px;
	position: absolute;
	margin: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 0;
	border-radius: 50%;
}
.slider .owl-carousel .owl-nav div:hover{
	background:#2C2D3F;
	color:#fff;
}
.slider .owl-carousel .owl-controls .owl-nav .owl-prev{
	left:20px;
}
.slider .owl-carousel .owl-controls .owl-nav .owl-next{
	right:20px;
}

/* Slider Animation */
.owl-item.active .single-slider h1{
    animation: fadeInUp 1s both 0.6s;
}
.owl-item.active .single-slider p{
    animation: fadeInUp 1s both 1s;
}
.owl-item.active .single-slider .button{
    animation: fadeInDown 1s both 1.5s;
}
/*===========================
	End Hero Area CSS
=============================*/

/*=============================
	Start Schedule CSS
===============================*/
.schedule {
	background: #fff;
	margin: 0;
	padding: 0;
	height: 230px;
}
.schedule .schedule-inner {
	position: relative;
	transform: translateY(-50%);
	z-index:9;
}
.schedule .single-schedule {
	position: relative;
	text-align: left;
	z-index:3;
	border-radius:5px;
	background: var(--main-color);
	 -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.schedule .single-schedule .inner {
	overflow:hidden;
	position: relative;
	padding:30px;
	z-index:2;
}
.schedule .single-schedule:before{
    position: absolute;
    z-index: -1;
    content: '';
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background: var(--main-color) ;
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.schedule .single-schedule:hover:before{
	opacity: 0.8;
}
.schedule .single-schedule:hover{
	transform: translateY(-5px);
}
.schedule .single-schedule .icon i{
	position: absolute;
	font-size: 110px;
	color: #fff;
	 -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
	z-index:-1;
	visibility:visible;
	opacity:0.2;
	right: -25px;
	bottom: -25px;
}
.schedule .single-schedule span{
	display:block;
	color:#fff;
}
.schedule .single-schedule h4{
	font-size: 20px;
	font-weight:600;
	display:inline-block;
	text-transform:capitalize;
	color:#fff;
	margin-top:13px;
}
.schedule .single-schedule p{
	color:#fff;
	margin-top:22px;
}
.schedule .single-schedule a {
	color: #fff;
	margin-top: 25px;
	font-weight: 500;
	display: inline-block;
	position: relative;
  text-decoration: none;
}
.schedule .single-schedule a:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:1px;
	width:0%;
	background:#fff;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.schedule .single-schedule a:hover:before{
	width:100%;
	width:100%;
}
.schedule .single-schedule a i{
	margin-left:10px;
}
.schedule .single-schedule .time-sidual{
	overflow:hidden;
	margin-top:17px;
}
.schedule .single-schedule .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom:3px;
}
.schedule .single-schedule .time-sidual li:last-child{
	margin:0;
}
.schedule .single-schedule .time-sidual li span{
	display:inline-block;
	float:right;
}
.schedule .single-schedule .day-head .time {
	font-weight: 400;
	float: right;
}

/* ===================responsive  */

@media only screen and (max-width: 991px) {
  .schedule {
    background: #fff;
    margin: 0;
    padding: 0;
    height: auto;
    padding: 50px 0;
    border-bottom:1px solid #eee;
  }
  .schedule .schedule-inner {
    transform: none;
  }
  .schedule .single-schedule.last{
    margin-top:30px;
  }
}
@media only screen and (max-width: 767px) {
  .schedule .single-schedule {
      margin: 15px 0;
  }
  .schedule .single-schedule.last{
    margin-top: 15px;
  }
}
/*=============================
	End Schedule CSS
===============================*/


/*=============================
	Start Feautes CSS
===============================*/
.Feautes{
	padding-top:0;
}
.Feautes.index2{
	padding-top:100px;
}
.Feautes.testimonial-page{
	padding-top:100px;
}
.Feautes .single-features{
	text-align:center;
	position:relative;
	padding:10px 20px;
}
.Feautes .single-features::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted #1a76d1;
}
.Feautes .single-features.last::before{
	display:none;
}
.Feautes .single-features .signle-icon{
	position:relative;
}
.Feautes .single-features .signle-icon i{
	font-size:50px;
	color:#1a76d1;
	position:absolute;
	left:50%;
	margin-left:-50px;
	top:0;
	height:100px;
	width:100px;
	line-height:100px;
	text-align:center;
	border:1px solid #dddddd;
	border-radius:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.Feautes .single-features:hover .signle-icon i{
	background:#1A76D1;
	color:#fff;
	border-color:transparent;
}
.Feautes .single-features h3{
	padding-top: 128px;
	color:#2C2D3F;
	font-weight:600;
	font-size:21px;
}
.Feautes .single-features p {
	margin-top: 20px;
}
.section-title {
    margin-bottom: 40px;
    padding: 0px 20px;
    text-align: center;
}
/* ===============> responsive */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .Feautes.index2 {
    padding-top: 70px;
  }
  .Feautes .single-features::before {
    display:none;
  }
  .Feautes .single-features {
    text-align: center;
    position: relative;
    padding: 10px 155px;
    margin: 10px 0;
  }
  .section-title {
    margin-bottom: 35px;
    padding: 0px 80px;
    text-align: center;
  }
  .section-title h2 {
    font-size: 25px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) { 
  .section{
    padding:50px 0px;
  }
  .Feautes .single-features .signle-icon i {
    font-size: 42px;
    left: 50%;
    margin-left: -40px;
    height:80px;
    width: 80px;
    line-height: 80px;
  }
  .Feautes .single-features::before {
    display:none;
  }
  .Feautes .single-features {
    text-align: center;
    position: relative;
    padding:0px;
    margin: 15px 0;
  }
  .Feautes .single-features h3 {
    padding-top: 105px;
    font-size: 20px;
  }
  .section-title {
    margin-bottom: 30px;
    padding: 0px 20px;
    text-align: center;
  }
  .section-title h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
  @media only screen and (max-width: 450px) {
    .Feautes .single-features .signle-icon i {
      font-size: 42px;
      left: 50%;
      margin-left: -40px;
      height:80px;
      width: 80px;
      line-height: 80px;
    }
    .Feautes .single-features::before {
      display:none;
    }
    .Feautes .single-features {
      text-align: center;
      position: relative;
      padding:0px;
      margin: 15px 0;
    }
    .Feautes .single-features h3 {
      padding-top: 105px;
      font-size: 20px;
    }
    .section{
      padding:50px 0px;
    }
    .section-title {
      margin-bottom: 30px;
      padding: 0px 20px;
    text-align: center;
    }
    .section-title h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }
  }
/*=============================
	End Feautes CSS
===============================*/

/*=============================
	start Steps CSS
===============================*/

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.step {
  padding: 20px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.step:hover {
  transform: translateY(-10px);
  border: none;
}
.icon {
  font-size: 50px;
  color: #007bff;
}
.step h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}
.step p {
  font-size: 1.1rem;
  color: #555;
}
/*=============================
	End Steps CSS
===============================*/


/* =====================================> Start Country Services */
.country-services {
  padding: 40px 0;
  /*background-color: #f9f9f9;*/
}

.country-services .section-title h2 {
  position: relative;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 35px;
}

.country-services .section-title h2:before {
  width: 28px;
  height: 4px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: var(--main-color);
}

.country-services .section-title h2:after {
  width: 80px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 20px;
  left: 50%;
  margin-left: -40px;
  background-color: var(--main-color);
}

.country-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: all 0.3s ease;
  height: 100%;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.country-card .country-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.country-card .country-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.country-card:hover .country-image img {
  transform: scale(1.05);
}

.country-card .country-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-card .country-content {
  padding: 20px;
}

.country-card .country-name {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.country-card .visa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-card .visa-list li {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.country-card .visa-list li:last-child {
  margin-bottom: 0;
}

.country-card .visa-list li i {
  color: var(--main-color);
  margin-right: 8px;
  font-size: 12px;
}

@media (min-width: 992px) {
  .country-services .row {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
  }
  
  .country-services .col-lg-3 {
    padding: 12px;
  }
}

@media (max-width: 991px) {
  .country-card {
    margin-bottom: 20px;
  }
  
  .country-card .country-image {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .country-card .country-image {
    height: 130px;
  }
  
  .country-card .country-content {
    padding: 15px;
  }
  
  .country-card .country-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
/* =====================================> End Country Services */


/*=============================
	End NOS OBJECTIFS
===============================*/
.nos-objectifs {
  background-color: var(--main-color);
}
.nos-objectifs .section-title h2 {
  position: relative;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
  color: #fff;
}
.nos-objectifs .section-title h2:before {
  width: 50px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}
.nos-objectifs p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 30px;
  background-color: var(--primary-color);
  border-radius: 0 7px 7px 0;
  border-left: 6px solid #fff;
}
/*=============================
	End NOS OBJECTIFS
===============================*/


/*=============================
	Start Temoignages
===============================*/
.temoignages .section-title{

}
.temoignages .section-title h2{
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}
figure.snip1157 {
  position: relative;
  overflow: hidden;
  margin: 20px;
  min-width: 220px;
  max-width: 350px;
  width: 100%;
  text-align: left;
  box-shadow: none !important;
}
figure.snip1157 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 95px;
  width: 95px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
}
figure.snip1157 blockquote {
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: var(--main-color);
  color: #fff;
  padding: 25px 30px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}
figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1157 blockquote:before {
  top: 5px;
  left: 10px;
  font-size: 30px;
}
figure.snip1157 blockquote:after {
  content: "\201D";
  right: 10px;
  bottom: 5px;
  font-size: 30px;
}
figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid var(--main-color);
  margin: 0;
  position: absolute;
}
figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
figure.snip1157 .author h5 {
  opacity: 0.8;
  font-weight: 800;
  color: #283033;
}
figure.snip1157 .author h5 span {
  font-weight: 400;
  font-size: 1rem;
  text-transform: none;
  color: #555;
  display: inline-block;
}
/*=============================
  End Temoignages
===============================*/

/*=============================
  Start Carte
===============================*/
.carte .section-title h2{
  color: #FFF;
  font-weight: 700;
  letter-spacing: 2px;
}
.carte {
  margin-top: 30px;
  background-color: var(--primary-color);
  padding: 40px 0;
}
/*=============================
  End Carte
===============================*/

/*=============================
  Start About Us  
===============================*/
.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-section .section-title {
  margin-bottom: 30px;
}

.about-section .section-title h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-section .section-title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.about-section .about-text {
  margin-bottom: 30px;
}

.about-section .about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.about-section .about-image {
  position: relative;
  padding: 20px;
}

.about-section .about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-section .about-image:hover img {
  transform: translateY(-5px);
}

.about-section .experience-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background-color: var(--main-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section .experience-badge .number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.about-section .experience-badge .text {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-section .section-title h3 {
    font-size: 30px;
  }
  
  .about-section .about-image {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section .section-title h3 {
    font-size: 28px;
  }
  
  .about-section .about-text p {
    font-size: 15px;
  }
  
  .about-section .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
  
  .about-section .experience-badge .number {
    font-size: 30px;
  }
}
/*=============================
  End About Us
===============================*/

/* =====================================> End Homepage */

/* =====================================> Start page Inscription */
/* Style for form container */
.wpcf7-form {
  width: 50%; /* Set form width to 50% */
  margin: 0 auto; /* Center the form horizontally */
  padding: 20px;
  background-color: #1a76d1eb !important; /* Green background */
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: white; /* Set text color to white for better contrast */
}

/* Label style */
.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #2C2D3F; /* White label text */
}

/* Input field styling */
.input-field input[type="text"],
.input-field input[type="email"],
.input-field input[type="tel"],
.input-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

/* Radio group styling */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
}

/* Submit button */
.student-registration-form .submit-button input[type="submit"] {
  background-color: white; /* White submit button */
  color: #1a76d1d9; 
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  font-weight: bold;
}

.student-registration-form .submit-button input[type="submit"]:hover {
  background-color: #06417c;
  color: white;
}

/* Responsive design */
@media (max-width: 768px) {
  .wpcf7-form {
      width: 90%; /* On smaller screens, make the form width larger */
  }

  .radio-group {
      flex-direction: column;
  }
}

/* =====================================> End page Inscription */

/* =======================> start footer */
footer {
  padding: 20px;
  color: #999;
}
footer .social-icons {
  display: flex;
  /* justify-content: flex-end; */
  gap: 20px;
}
footer .social-icons a.facebook:hover {
  background-color: #1877f2;
  transform: translateY(-5px);
}
footer .social-icons a.twitter:hover {
  background-color: #1da1f2;
  transform: translateY(-5px);
}
footer .social-icons a.linkedin:hover {
  background-color: #0a66c2;
  transform: translateY(-5px);
}
footer .social-icons a.instagram:hover {
  background-color: #405de6;
  transform: translateY(-5px);
}
footer .social-icons a:hover i {
  color: #fff;
}
footer .social-icons a i {
  font-size: 20px;
  color: #999;
  transition: 0.3s;
}
footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.3s;
}
footer .copyright {
  margin: 0; /* copyright by default has margin bottom */
  color: #999;
}
footer ul {
  list-style-type: none;
  margin-top: 15px;
  line-height: 25px;
}
@media (max-width: 575px) {
  footer {
    text-align: center;
  }
  footer .social-icons {
    margin-top: 10px;
    justify-content: center;
    gap: 2px;
  }
}
/* =======================> end footer */

/* start page contact ===========================================*/
.student-registration-form {
  margin: 130px auto;
  padding: 20px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.student-registration-form .title-insc {
  text-align: center;
  color: #332f2f;
  font-weight: bold;
  padding: 10px;
  font-style: oblique;

}
/* Contact Form 7 Styles */
.wpcf7-form label {
  margin-top: 10px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 80%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.page-contact .wpcf7-form input[type="submit"] {
  background-color: #000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 40%;
  transform: translateX(-50%);
  margin-top: 5px;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #283033;
}

/* Target a specific form by ID */
#wpcf7-f391b6d2-o1 input[type="text"],
#wpcf7-f391b6d2-o1 input[type="email"],
#wpcf7-f391b6d2-o1 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

/* end page contact =============================================*/

/* =====================================> Start Thank You Page */
.thank-you-section {
  margin-top: 89px;
}

@media (max-width: 768px) {
  .thank-you-section {
    margin-top: 20px;
  }
}

.thank-you-content {
  background-color: var(--main-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  color: white;
}

.thank-you-content:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.thank-you-content:after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.thank-you-content .success-icon {
  position: relative;
  margin: 0 auto;
  animation: pulse 2s infinite;
}

.thank-you-content h2 {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.thank-you-content .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.thank-you-content .btn {
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.thank-you-content .btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* =====================================> End Thank You Page */

/* =====================================> Start Reservation Form */
.reservation-form {
  padding: 30px 0;
}

.reservation-form .form-header {
  margin-bottom: 30px;
}

.reservation-form .form-title {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.reservation-form .form-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.reservation-form .form-subtitle {
  color: #666;
  font-size: 16px;
}

.reservation-form form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  position: relative;
}

.reservation-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.reservation-form .form-label .text-danger {
  color: #dc3545;
  font-weight: bold;
}

.reservation-form .form-control {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 15px;
}

.reservation-form .form-control:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 118, 209, 0.15);
}

.reservation-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.reservation-form .btn-primary {
  background-color: var(--main-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-size: 16px;
}

.reservation-form .btn-primary:hover {
  background-color: var(--main-color-alt);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-form .btn-primary:disabled {
  background-color: #6c757d;
  transform: none;
  cursor: not-allowed;
}

/* Validation styles */
.reservation-form .was-validated .form-control:invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.reservation-form .was-validated .form-control:valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.reservation-form .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.reservation-form .was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

.reservation-form .was-validated .form-check-input:invalid ~ .invalid-feedback {
  display: block;
}

.reservation-form .was-validated .form-check-input:invalid {
  border-color: #dc3545;
}

.reservation-form .was-validated .form-check-input:valid {
  border-color: #198754;
}

/* Alert styles */
.reservation-form .alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 25px;
  position: relative;
  animation: fadeInDown 0.5s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reservation-form .alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
  border-left: 5px solid #dc3545;
}

.reservation-form .alert-danger ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.reservation-form .alert-danger strong {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Security notice */
.reservation-form .security-note {
  background-color: #f8f9fa;
  padding: 10px 15px;
  border-radius: 5px;
  border-left: 3px solid var(--main-color);
  text-align: center;
}

.reservation-form .form-check-label a {
  color: var(--main-color);
  text-decoration: none;
}

.reservation-form .form-check-label a:hover {
  text-decoration: underline;
}

.reservation-form .form-text {
  color: #6c757d;
  font-size: 0.875em;
}

@media (max-width: 767px) {
  .reservation-form form {
    padding: 20px 15px;
  }
  
  .reservation-form .form-title {
    font-size: 22px;
  }
  
  .reservation-form .form-subtitle {
    font-size: 14px;
  }
}
/* =====================================> End Reservation Form */

/* =====================================> Start Slick Slider ======================================== */
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/* start slick-theme */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("../ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;

  src: url("../webfonts/slick.eot");
  src: url("../webfonts/slick.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/slick.woff") format("woff"),
    url("../webfonts/slick.ttf") format("truetype"),
    url("../webfonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  z-index: 999;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 100%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: transparent;

}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 35px;
  line-height: 1;

  opacity: 0.75;
  color: var(--main-color-alt);        /* color the prev and next */

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 1000;
}

.slick-prev {
  left: 0;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 15px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  /* margin-bottom: 30px; */
}
.slick-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 110;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: #000;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--main-color-alt);
}

/* end slick-theme */
/* End Slick Slider  */

.formations .images {
  display: block;
  width: 100%;
  height: 100%;
}

