
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #0940b8; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #fe9833; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #fe9833; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #99cbcc; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1dc8cd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #e9f8eb;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #ffffff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #ffffff;
    --contrast-color: #fffdfb;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
  /* PHP Email Form Messages
  ------------------------------*/
  .php-email-form .error-message {
    display: none;
    background: #ffffff;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
  }
  
  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #e44919ea;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 32px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--heading-color);
  }
  
  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
    --background-color: #003096;
  }
  
  /*--------------------------------------------------------------
 
  
  
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
  }
  
  .page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
  }
  
  .page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  /*--------------------------------------------------------------
/* Global Sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0; /* Reduced from 60px to 40px */
  scroll-margin-top: 70px; /* Reduced margin */
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 50px; /* Adjusted margin for smaller screens */
  }
}

  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    align-items: center;
 


  }
  .formations {
    
    max-width: 100% !important ;
    padding-top: 40px;
    margin-bottom: 40px;


  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 30px;
    position: relative;
  margin-top: 30px;
  }
  
  .section-title .green h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-title .blue h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #0940b8;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .section-title .orange h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }


  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
/* Custom full-width container for the hero section */
.container-fullwidth {
  width: 100vw;  /* Full viewport width */
  max-width: 100%; /* Remove Bootstrap's container max-width */
  padding: 0; /* Remove any padding */
  margin: 0; /* Remove margins */
  overflow: hidden;
}

/* Ensure the hero section itself has no extra padding or margin */
.hero {
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  
}



/* Slides background full width */
.slide-orange, .slide-blue, .slide-green {
  width: 100vw;  /* Ensure background fills the full width of the viewport */
  min-height: 70vh;
  position: relative;
}

/* Maintain carousel container styling */
.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 60px;
  width: 100%; /* Ensure the container also spans the full width */
  z-index: 5;
}


/* Background colors for each specific slide */
.slide-orange {
  background-color: #fe9833; /* Coral */
  position: relative; /* Ensure the background color covers the full area */
  z-index: 1; /* Slide background behind waves */
}

.slide-blue {
  background-color: #0940b8; /* Dodger Blue */
  position: relative;
  z-index: 1; /* Slide background behind waves */
  opacity: 0.7;
}

.slide-green {
  background-color: #99cbcc; /* Lime Green */
  position: relative;
  z-index: 1; /* Slide background behind waves */
}

/* Optional: Smooth transition between slides */
.carousel-item {
  transition: background-color 0.5s ease;
}

  
  .hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    color:#ffffff
  }
  
  .hero p {
    max-width: 80%;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color:#ffffff

  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 10%;
  }
  
  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
  }
  
  .hero .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    animation-delay: 0.8s;
    color: #ffffff;
    border: 2px solid rgb(255, 255, 255);
  }
  
  .hero .btn-get-started:hover {
    background: black;
    color: var(--contrast-color);
    text-decoration: none;
  }
  
  @media (min-width: 1024px) {
    .hero p {
      max-width: 60%;
    }
  
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
      width: 5%;
    }
  }
  
  @media (max-width: 768px) {
    .hero .carousel-container {
      min-height: 90vh;
    }
  
    .hero h2 {
      font-size: 28px;
    }
  }
  
  .hero .hero-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    bottom: 0;

  }
  
  .hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: white;
    opacity: 0.6;
  }
  
  .hero .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: white;
    opacity: 0.4;
  }
  
  .hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill:white;
  }
  
  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
  
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .video-container {
    position: relative;
    width: 100vw;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    background: #0940b8; /* Hide any empty spaces */
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the full video is visible */
}

/* Remove default control shadows and styling */
video::-webkit-media-controls-panel {
  background: transparent !important; /* Removes shadow and background */
  box-shadow: none !important;
}

/* Ensure controls are minimalistic */
video::-webkit-media-controls {
  background: none !important;
}


.closer-title {
  margin-bottom: 10px; /* Reduce the space below the title */
  font-size: 2.5rem; /* Optional: Adjust the font size if needed */
  text-align: left; /* Optional: Ensure the title is centered */
  font-weight: bolder;
}

/* Adjust paragraph styles for better spacing */
.hero-caption p {
  margin-top: 0px; /* Remove any top margin for the paragraph */
  font-size: 1.1rem; /* Optional: Tweak font size if necessary */
  line-height: 1.6; /* Optional: Adjust line height for better readability */
  text-align: justify; /* Optional: Justify the text for cleaner look */
  
}
.slider-area {
	margin-top: -1px;
	padding-bottom: 10px ;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-area {
		padding-bottom: 50px
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.slider-area {
		padding-bottom: 50px;
		padding-top: 50px
	}
}

@media (max-width: 575px) {
	.slider-area {
		padding-bottom: 50px;
		padding-top: 50px
	}
}

.slider-area.slider-area2 {
	padding-bottom: 50px
}

@media (max-width: 575px) {
	.slider-area.slider-area2 {
		padding-bottom: 0px;
		padding-top: 80px
	}
}

.slider-area .single-slider .slider-cap-wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;

	flex-wrap: wrap
	
}

.slider-area .single-slider .slider-cap-wrapper .hero-img {
	width: 59%;
	overflow: hidden
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-img {
		width: 51%
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-img {
		width: 51%
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-img {
		width: 49%
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-img {
		display: none
	}
}

@media (max-width: 575px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-img {
		display: none
	}
}

.slider-area .single-slider .slider-cap-wrapper .hero-img img {
	width: 100%
}

.slider-area .single-slider .slider-cap-wrapper .hero-caption {
	width: 25%;
	overflow: hidden
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption {
		width: 34%
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption {
		width: 42%
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption {
		width: 48%
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption {
		width: 100%;
		padding-left: 37px
	}
}

@media (max-width: 575px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption {
		width: 100%;
		padding-left: 37px;
		padding-bottom: 90px
	}
}


@media only screen and (min-width: 1200px) and (max-width: 1400px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption h1 {
		font-size: 56px
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption h1 {
		font-size: 45px;
		line-height: 1.2
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption h1 {
		font-size: 30px;
		line-height: 1.2
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption h1 {
		font-size: 33px;
		line-height: 1.2;
		margin-bottom: 30px
	}
}

@media (max-width: 575px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption h1 {
		font-size: 23px;
		line-height: 1.2;
		margin-bottom: 25px
	}
}

.slider-area .single-slider .slider-cap-wrapper .hero-caption p {
	margin-bottom: 39px;
	display: block;
	color: #010A44;
	font-size: 20px;
	padding-right: 50px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.slider-area .single-slider .slider-cap-wrapper .hero-caption p {
		margin-bottom: 29px;
		font-size: 18px;
		padding-right: 21px
	}
}

.closer-title {
  font-size: 3rem;
  text-align: left;
  font-weight: bold;
}

.hero-caption {
  width: 50%;
  padding: 22px;
  background-color: #f5e7d1; /* Light beige background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* Ensure alignment */
  opacity: 0; /* Hide initially */
  transition: opacity 0.6s ease-in-out; /* Smooth fade-in effect */
}

.hero-caption[data-aos="fade-up"] {
  opacity: 1; /* Ensure it appears with animation */
}

.hero-caption p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  color: #333;
  margin-top: 20px;
  flex-grow: 1;
}

.contact-us {
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  margin-top: 20px;
  display: inline-block;
}

.slider-area {
  padding: 50px 0;
  background-color: #fff;
}

.slider-cap-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.hero-img {
  width: 50%;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 472px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .slider-cap-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-caption, .hero-img {
    width: 100%;
  }

  .closer-title {
    font-size: 2rem;
  }

  .hero-caption p {
    font-size: 1rem;
  }
}

  /*--------------------------------------------------------------
  # OLD Clients Section
  --------------------------------------------------------------*/
  .clients {
    padding: 10px 0; /* Increased padding for better spacing */
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}





@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 10px; /* Adjust padding for smaller screens */
    }
}


  /*--------------------------------------------------------------
  # NEW Clients Section
  --------------------------------------------------------------*/

.clients-slider {
  padding: 0px 0;
  padding-bottom: 10px;
}



.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto !important;
}

.swiper-slide img {
  width: 180px; /* Adjust size as needed */
}

.swiper-slide img:hover {
  transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
  color: #0056b3; /* Arrow color */
  padding: 20px;
}

  
  /*--------------------------------------------------------------
  # Features 2 Section
  --------------------------------------------------------------*/
  .features-2 .features-image {
    position: relative;
  }
  
  .features-2 .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fe9833;
  }
  
  .features-2 .features-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
  }
  
  .features-2 .features-item p {
    font-size: 15px;
    color: rgb(0, 1, 32);
    margin: 0;
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-item {
    background-color: white;
    text-align: center;
    border: 3px solid #99cbcc ;
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
  }
  
  .services .service-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
  }
  
  .services .service-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }
  
  .services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    border-color: var(--accent-color);
  }
  
  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
    background: linear-gradient(135deg, #2C3E50, #4CA1AF);

  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Fades into background */
    background-size: cover;
  }
  
  .call-to-action:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
  }
  
  .call-to-action p {
    color: #FFFFFF;
  }
  .call-to-action h3, .call-to-action p {
    color: #FFFFFF;
}

  
/* Transparent button with orange border */
.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  
  background: transparent; /* Make button transparent */
  border: 2px solid white; /* Orange border */
  color: white; /* Orange text */
  margin-top: 50px;

}

/* Hover effect: full orange */
.call-to-action .cta-btn:hover {
  background: #FF7F50;
  color: #FFFFFF;
}
  /*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
  .pricing {
    padding: 600px 0 100px 100;
  }
  
  .pricing .section-title {
    margin-bottom: 40px;

  }
  
  .pricing .pricing-item {
    background-color:white;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    height: 600px;
    position: relative;
    border-radius: 15px;
    border: 3px solid #0940b8;
    margin-left: -10px;
    
    
    
  }
 
  
   .pricing-item {
    background-color:white;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    height: 600px;
    position: relative;
    border-radius: 15px;
    border: 3px solid #0940b8;
    width: 400px;
    
    
  }
  .pricing .featured {
    z-index: 2;
    border: 4px solid #0940b8;
    padding: 30px 20px;

  }
  
  
  .pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
  }
  .pricing p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 40px;
  }
  
  .pricing .icon {
    margin: 30px auto 20px auto;
    width: 70px;
    height: 70px;
    background: #0940b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transform-style: preserve-3d;
  }
  
  .pricing .icon i {
    color: var(--background-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    line-height: 0;
  }
  
  .pricing .icon::before {
    position: absolute;
    content: "";
    height: 86px;
    width: 86px;
    border-radius: 50%;
    background: color-mix(in srgb, #0940b8, transparent 80%);
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
  }
  
  .pricing .icon::after {
    position: absolute;
    content: "";
    height: 102px;
    width: 102px;
    border-radius: 50%;
    background: color-mix(in srgb, #0940b8, transparent 90%);
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-2px);
  }
  
  .pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 25px;
    text-align: center;
  }
  
  .pricing h4 sup {
    font-size: 28px;
  }
  
  .pricing h4 span {
    color: color-mix(in srgb, #0940b8, transparent 50%);
    font-size: 18px;
    font-weight: 400;
  }
  
  .pricing ul {
    padding: 0px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: left;
    line-height: 15px;
  }
  
  .pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
  }
  
  .pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .pricing ul .na span {
    text-decoration: line-through;
  }
  

  
 
  @media (min-width: 992px) {
    .pricing .featured {
      transform: scale(1.15);
    }
  }
  
 
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact {
    background: #0c3a53;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
  }
  
  .contact-text {
    margin-top: -50px;
    flex: 1;
    padding-right: 50px; /* Adjust spacing */
    text-align: left;
  }
  
  .message {
    font-size: 40px; /* Increased size */
    font-weight: bold;
    line-height: 1.5; /* Improved readability */
    color: white;

  }
  
  .highlight {
    color: #fe9833;
    font-size: 42px; /* Bigger size */
    font-weight: bold;
    margin-top: 20px;
  }
  
  /* Contact Form */
  .php-email-form {
    max-width: 500px;
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 18px;
    background-color: #0c3a53;
    color: white;
  }
  
  .btn-submit {
    background: #fe9833;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-submit:hover {
    background: #fe9833;
  }
  

  
  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .services-list {
    background-color: white;
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
  }
  
  .service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
  }
  
  .service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
  }
  
  .service-details .services-list a:hover {
    border-color: var(--accent-color);
  }
  
  .service-details .services-img {
    margin-bottom: 20px;
  }
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .service-details h4 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .service-details p {
    font-size: 15px;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  

 /*--------------------------------------------------------------
  # Avis
  --------------------------------------------------------------*/

.demo{ background: #99cbcc; }
.testimonial{
    background: #fff;
    text-align: center;
    padding: 30px 30px 50px;
    margin: 0 15px 150px;
    position: relative;
}
.testimonial:before,
.testimonial:after{
    content: "";
    border-top: 40px solid #fff;
    border-right: 125px solid transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
}
.testimonial:after{
    border-right: none;
    border-left: 125px solid transparent;
    left: auto;
    right: 0;
}
.testimonial .icon{
    display: inline-block;
    font-size: 80px;
    color: #99cbcc;
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial .description{
    font-size: 15px;
    color: #000000;
    text-align: left;
    margin-bottom: -10px;
    opacity: 0.8;
    height: 250px;
    overflow: scroll;
}
.testimonial .testimonial-content{
    width: 100%;
    position: absolute;
    left: 0;
}
/* Fix the size of the images within the testimonial cards */
.testimonial .pic {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px 2px #99cbcc;
  overflow: hidden;
  z-index: 1;
  position: relative;
  width: 150px; /* Set a fixed width */
  height: 150px; /* Set a fixed height */
}

/* Ensure the image fills the container and remains circular */
.testimonial .pic img {
  width: 100%;
  height: 100%;
  object-fit:fill; /* Ensures the image covers the area without distortion */
  object-position: center; /* Keeps the image centered */
}

/* The rest of the CSS remains the same */

.testimonial .title{
    font-size: 15px;
    font-weight: bold;
    color: #010A44;
    text-transform: capitalize;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 18px;
    color: #990e0e;
}
.owl-theme .owl-controls{
    margin-top: 0;
}
.owl-theme .owl-controls .owl-page span{
    width: 32px;
    height: 10px;
    background: #e24e4e;
    border: 2px solid #000000;
    margin: 5px;
    opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #000000;
    border-color: #fff;
}
@media only screen and (max-width: 650px) and (min-width: 400px){
    .testimonial:before{ border-right: 325px solid transparent; }
    .testimonial:after{ border-left: 325px solid transparent; }
}
.owl-theme .owl-controls{margin-top:10px;text-align:center}
.owl-theme .owl-controls .owl-buttons div{color:#FFF;display:inline-block;zoom:1;margin:5px;padding:3px 10px;font-size:12px;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;background:#869791;filter:Alpha(Opacity=50);opacity:.5}
.owl-theme .owl-controls.clickable .owl-buttons div:hover{filter:Alpha(Opacity=100);opacity:1;text-decoration:none}.owl-theme .owl-controls .owl-page{display:inline-block;zoom:1;}.owl-theme .owl-controls .owl-page span{display:block;width:12px;height:12px;margin:5px 7px;filter:Alpha(Opacity=50);opacity:.5;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background:#869791}
.owl-theme .owl-controls .owl-page.active span,.owl-theme .owl-controls.clickable .owl-page:hover span{filter:Alpha(Opacity=100);opacity:1}.owl-theme .owl-controls .owl-page span.owl-numbers{height:auto;width:auto;color:#FFF;padding:2px 10px;font-size:12px;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}
.owl-item.loading{min-height:150px;background:url(AjaxLoader.gif) no-repeat center center}

.owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel{display:none;position:relative;width:100%;-ms-touch-action:pan-y}
.owl-carousel .owl-wrapper{display:none;position:relative;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100%}.owl-carousel .owl-wrapper-outer.autoHeight{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}
.owl-carousel .owl-item{float:left}
.owl-controls .owl-page,.owl-controls .owl-buttons div{cursor:pointer}
.owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}
.grabbing{cursor:url(grabbing.png) 8 8,move}
.owl-carousel .owl-wrapper,.owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}