/*******************************/
/********* General CSS *********/
/*******************************/
/* Fix box-sizing for all elements to prevent overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  color: #666666;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #14287b;
}
.blog-meta a{
  color:black;
}
a {
  color: #ffffff;
  transition: .3s;
}

a:hover,
a:active,
a:focus {
  color: #eec263;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

/* Fixed wrapper to prevent horizontal overflow on mobile */
.wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow-x: hidden;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #d9ddea;
  color: #121518;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;

  /* 🔁 Position à gauche */
  left: 15px;
  bottom: 15px;

  transition: background 0.5s;
  z-index: 9999;
}

.back-to-top:hover {
  color: #d9ddea;
  background: #121518;
}

.back-to-top i {
  padding-top: 10px;
}
@media (max-width: 576px) {
  .back-to-top {
    bottom: 90px;
  }
}

.btn {
  transition: .3s;
}

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  position: relative;
  height: 90px;
  background: #d9ddea;
  overflow-x: hidden;
  width: 100%;
}

.top-bar .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  width: 100%;
}

.top-bar .logo {
  padding: 15px 0;
  text-align: left;
  overflow: hidden;
}

.top-bar .logo h1 {
  margin: 0;
  color: #14287b;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}

.top-bar .logo img {
  max-width: 100%;
  max-height: 60px;
}

.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar .top-bar-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
  margin: 0;
  color: #14287b;
  font-size: 40px;
}

.top-bar .top-bar-text {
  padding-left: 15px;
}

.top-bar .top-bar-text h3 {
  margin: 0 0 5px 0;
  color: #14287b;
  font-size: 16px;
  font-weight: 400;
}

.top-bar .top-bar-text p {
  margin: 0;
  color: #14287b;
  font-size: 13px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .top-bar {
    padding: 0 60px;
  }
}

@media (max-width: 991.98px) {
  .top-bar .logo {
    text-align: center;
  }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
/* Adjustments for the navbar *//* Ensure navbar is visible when hovered */
.nav-bar {
  position: relative;
  background: #d9ddea;
  transition: .3s;
  width: 100%;
  padding: 0;
}

.nav-bar .container-fluid {
  padding: 0;
}

.nav-bar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav-bar .navbar {
  height: 100%;
  background: #14287b !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  padding: 10px 10px 8px 10px;
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #d9ddea;
  transition: none;
}

.nav-bar .dropdown-menu {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: #f8f9fa;
}

.nav-bar .btn {
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0;
}

.nav-bar .btn:hover {
  color: #14287b;
  background: #d9ddea;
  border-color: #d9ddea;
}

@media (min-width: 992px) {
  .nav-bar {
    padding: 0;
  }

  .nav-bar.nav-sticky {
    padding: 0;
  }

  .nav-bar .navbar {
    padding: 20px;
  }

  .nav-bar .navbar-brand {
    display: none;
  }

  .nav-bar a.nav-link {
    padding: 8px 15px;
    font-size: 15px;
    text-transform: uppercase;
  }
}

@media (max-width: 991.98px) {
  .nav-bar .navbar {
    padding: 15px;
  }

  .nav-bar a.nav-link {
    padding: 5px;
  }

  .nav-bar .dropdown-menu {
    box-shadow: none;
  }

  .nav-bar .btn {
    display: none;
  }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 170px);
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px;
}

.carousel .carousel-caption p {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: .3s;
}

.carousel .carousel-caption .btn:hover {
  color: #14287b;
  background: #d9ddea;
  border-color: #d9ddea;
}

@media (max-width: 767.98px) {
  .carousel .carousel-caption h1 {
    font-size: 40px;
    font-weight: 700;
  }

  .carousel .carousel-caption p {
    font-size: 20px;
  }

  .carousel .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
  }
}

@media (max-width: 575.98px) {
  .carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 500;
  }

  .carousel .carousel-caption p {
    font-size: 16px;
  }

  .carousel .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

.carousel .animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

/*******************************/
/******* Page Header CSS ********/
/*******************************/
/* Updated hero CTA bar styling with new colors */
.hero-cta-bar {
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: #d9ddea;
  text-align: center;
}

.hero-cta-text {
  margin: 0;
  color: #14287b;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .hero-cta-bar {
    padding: 15px 0;
  }

  .hero-cta-text {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .hero-cta-bar {
    padding: 12px 0;
  }

  .hero-cta-text {
    font-size: 12px;
  }
}
.page-header {
  position: relative;
  margin-bottom: 45px;
  padding: 90px 0;
  text-align: center;
  background: #d9ddea;
}

.page-header h2 {
  position: relative;
  color: #14287b;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.page-header h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  left: calc(50% - 50px);
  bottom: 0;
  background: #14287b;
}

.page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
  color: #14287b;
}

.page-header a:hover {
  color: #ffffff;
}

.page-header a::after {
  position: absolute;
  content: "/";
  width: 8px;
  height: 8px;
  top: -2px;
  right: -7px;
  text-align: center;
  color: #121518;
}

.page-header a:last-child::after {
  display: none;
}

@media (max-width: 991.98px) {
  .page-header {
    padding: 60px 0;
  }

  .page-header h2 {
    font-size: 45px;
  }

  .page-header a {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 45px 0;
  }

  .page-header h2 {
    font-size: 35px;
  }

  .page-header a {
    font-size: 18px;
  }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

/* Updated section header color to new gold */
.section-header p {
  color: black;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-header h2 {
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 30px;
  }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/

.feature {
  position: relative;
  margin-bottom: 45px;
  width: 100%;
  overflow-x: hidden;
}

.feature .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  width: 100%;
}

.feature .col-md-12 {
  background: #14287b;
  padding-left: 15px;
  padding-right: 15px;
}

.feature .col-md-12:nth-child(2n) {
  color: #14287b;
  background: #d9ddea;
}

.feature .feature-item {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Icon container */
.feature .feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
  background: #d9ddea;
}

/* =========================
   ICON SYSTEMS SUPPORT
   ========================= */

/* Font Awesome icons */
.feature .feature-icon i.fas,
.feature .feature-icon i.far,
.feature .feature-icon i.fab {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  font-size: 42px;
  color: #d9ddea;
  z-index: 3;
}

/* Flaticon icons (still supported) */
.feature .feature-icon [class^="flaticon-"]::before {
  font-size: 42px;
  margin: 0;
  color: #d9ddea;
  line-height: 1;
  z-index: 3;
}

/* Alternate column colors */
.feature .col-md-12:nth-child(2n) i,
.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
  color: #14287b;
}

/* Text */
.feature .feature-text {
  padding-left: 0;
  /* removed padding-left and added text-align center for vertical layout */
  text-align: center;
  margin-top: 20px;
}

.feature .feature-text h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
}

.feature .feature-text p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

/* =========================
   FEATURE COLOR CONTROL
   ========================= */

/* Dark block */
.feature-dark {
  background: #14287b;
}

.feature-dark h3,
.feature-dark p,
.feature-dark i {
  color: #d9ddea;
}

/* Light block */
.feature-light {
  background: #d9ddea;
}

.feature-light h3,
.feature-light p,
.feature-light i {
  color: #14287b;
}

/* Icon background circle fix */
.feature-dark .feature-icon::after {
  background: #14287b;
}

.feature-light .feature-icon::after {
  background: #d9ddea;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.about .section-header {
  margin-bottom: 30px;
}

.about .about-img {
  position: relative;
  height: 100%;
}

.about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-text p {
  font-size: 16px;
}

.about .about-text a.btn {
  position: relative;
  margin-top: 15px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #14287b;
  border-radius: 0;
  background: #d9ddea;
  transition: .3s;
}

.about .about-text a.btn:hover {
  color: #d9ddea;
  background: #14287b;
}

@media (max-width: 767.98px) {
  .about .about-img {
    margin-bottom: 30px;
    height: auto;
  }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 45px 15px;
  overflow-x: hidden;
}

.fact .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  width: 100%;
}

.fact .col-6 {
  display: flex;
  align-items: flex-start;
}

.fact .fact-icon {
  position: relative;
  margin: 7px 15px 0 15px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  background-image: linear-gradient(#ffffff, #d9ddea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
  background-image: linear-gradient(#ffffff, #14287b);
}

.fact .fact-left,
.fact .fact-right {
  padding-top: 60px;
  padding-bottom: 60px;
}

.fact .fact-text h2 {
  font-size: 35px;
  font-weight: 700;
}

.fact .fact-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.fact .fact-left {
  color: #d9ddea;
  background: #14287b;
}

.fact .fact-right {
  color: #14287b;
  background: #d9ddea;
}

.fact .fact-left h2 {
  color: #d9ddea;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 45px 15px 15px 15px;
  overflow-x: hidden;
}

.service .container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  width: 100%;
}

.service .service-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.service .service-img {
  position: relative;
  overflow: hidden;
}

.service .service-img img {
  width: 100%;
}

.service .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 40, 123, 0.7);
  transition: .5s;
  opacity: 0;
}

.service .service-item:hover .service-overlay {
  opacity: 1;
}

.service .service-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #165a5d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: #d9ddea;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.service .service-item a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #165a5d;
  background: #d9ddea;
  border-radius: 0;
  transition: .3s;
}

.service .service-item:hover a.btn {
  color: #ffffff;
}
.service .service-overlay,
.service .service-overlay p,
.service .service-overlay a,
.service .service-overlay span {
  color: #ffffff; /* texte blanc */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); /* lisibilité sur images */
  font-weight: 500;
}

/* si vous avez des liens dans l'overlay */
.service .service-overlay a {
  text-decoration: underline;
  color: #ffffff;
}

/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
  position: relative;
  margin: 45px 0;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(20, 40, 123, 0.9), rgba(20, 40, 123, 0.9)), url(../img/carousel-1.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #d9ddea;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #d9ddea;
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play:hover:after {
  background-color: darken(#d9ddea, 10%);
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #14287b;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  color: #d9ddea;
  opacity: 1;
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

/* Added client marquee carousel styles */
.team .section-header p {
  display: none;
}

.team .team-item {
  display: none;
}

.team .section-header h2 {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.clients-marquee {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: flex;
  gap: 60px;
  width: fit-content;
  animation: scroll-marquee 30s linear infinite;
}

.clients-marquee:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee {
    animation: none;
  }
}

.clients-marquee li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-marquee img {
  max-height: 120px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .clients-marquee img {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .clients-marquee img {
    max-height: 48px;
  }
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.faqs .row {
  position: relative;
}

.faqs .row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(50% - .5px);
  background: #d9ddea;
}

.faqs #accordion-1 {
  padding-right: 15px;
}

.faqs #accordion-2 {
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  .faqs .row::after {
    display: none;
  }

  .faqs #accordion-1,
  .faqs #accordion-2 {
    padding: 0;
  }

  .faqs #accordion-2 {
    padding-top: 15px;
  }
}

.faqs .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}

.faqs .card:last-child {
  margin-bottom: 0;
}

.faqs .card-header {
  padding: 0;
  border: none;
  background: #ffffff;
}

.faqs .card-header a {
  display: block;
  padding: 10px 25px;
  width: 100%;
  color: #121518;
  font-size: 16px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
  background: #d9ddea;
}

.faqs .card-header [data-toggle="collapse"]:after {
  font-family: "font Awesome 5 Free";
  content: "\f067";
  float: right;
  color: black;
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
  font-family: "font Awesome 5 Free";
  content: "\f068";
  float: right;
  color: #14287b;
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.faqs .card-body {
  padding: 20px 25px;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
  position: relative;
  margin: 45px 0;
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(rgba(20, 40, 123, 0.9), rgba(20, 40, 123, 0.9)), url(../img/carousel-1.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .container {
  max-width: 760px;
}

.about-page .testimonial {
  padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
  position: relative;
  opacity: 0;
  transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
  opacity: 1;
  transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
  transform: scale(1.8);
  z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
  position: relative;
  display: block;
  margin-top: 37px;
  width: 100%;
  height: auto;
  border-radius: 100px;
}

.testimonial .testimonial-slider {
  position: relative;
  margin-top: 15px;
  padding-top: 50px;
}

.testimonial .testimonial-slider::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 50px;
  top: 0;
  left: calc(50% - 30px);
  background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
  color: #d9ddea;
  font-size: 22px;
  font-weight: 700;
}

.testimonial .testimonial-slider h4 {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.blog .blog-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.blog .blog-img {
  position: relative;
  overflow: hidden;
}

.blog .blog-img img {
  width: 100%;
}
.top-bar-text a{
  color: #14287b ;
}
.blog .blog-title {
  display: flex;
  align-items: center;
  height: 60px;
  background: #165a5d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog .blog-title h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 18px;
  font-weight: 700;
  color: #d9ddea;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog .blog-title a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #14287b;
  background: #d9ddea;
  border-radius: 0;
  transition: .3s;
}

.blog .blog-item:hover a.btn {
  color: #ffffff;
}

.blog .blog-meta {
  position: relative;
  padding: 25px 0 10px 0;
  background: #f3f6ff;
}

.blog .blog-meta::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: calc(50% - 50px);
  bottom: 0;
  background: #d9ddea;
}

.blog .blog-meta p {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: #666666;
}

.blog .blog-meta p a {
  margin-left: 5px;
  font-style: normal;
}

.blog .blog-text {
  padding: 10px 25px 25px 25px;
  background: #f3f6ff;
}

.blog .blog-text p {
  margin: 0;
  font-size: 16px;
}

.blog .pagination .page-link {
  color: #14287b;
  border-radius: 0;
  border-color: #d9ddea;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
  color: #d9ddea;
  background: #14287b;
}

.blog .pagination .disabled .page-link {
  color: #999999;
}

/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
  position: relative;
  padding: 45px 0;
}

.single .single-content {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.single .single-content img {
  margin-bottom: 20px;
  width: 100%;
}

.single .single-tags {
  margin: -5px -5px 41px -5px;
  font-size: 0;
}

.single .single-tags a {
  margin: 5px;
  display: inline-block;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  border: 1px solid #dddddd;
}

.single .single-tags a:hover {
  color: #d9ddea;
  background: #14287b;
}

.single .single-bio {
  margin-bottom: 45px;
  padding: 30px;
  background: #f3f6ff;
  display: flex;
}

.single .single-bio-img {
  width: 100%;
  max-width: 100px;
}

.single .single-bio-img img {
  width: 100%;
}

.single .single-bio-text {
  padding-left: 30px;
}

.single .single-bio-text h3 {
  font-size: 20px;
  font-weight: 700;
}

.single .single-bio-text p {
  margin: 0;
}

.single .single-related {
  margin-bottom: 45px;
}

.single .single-related h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.single .related-slider {
  position: relative;
  margin: 0 -15px;
  width: calc(100% + 30px);
}

.single .related-slider .post-item {
  margin: 0 15px;
}

.single .post-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.single .post-item .post-img {
  width: 100%;
  max-width: 80px;
}

.single .post-item .post-img img {
  width: 100%;
}

.single .post-item .post-text {
  padding-left: 15px;
}

.single .post-item .post-text a {
  font-size: 16px;
  font-weight: 400;
}

.single .post-item .post-meta {
  display: flex;
  margin-top: 8px;
}

.single .post-item .post-meta p {
  display: inline-block;
  margin: 0;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
}

.single .post-item .post-meta p a {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
}

.single .related-slider .owl-nav {
  position: absolute;
  width: 90px;
  top: -55px;
  right: 15px;
  display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
  margin-left: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14287b;
  background: #d9ddea;
  font-size: 16px;
  transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
  color: #d9ddea;
  background: #14287b;
}

.single .single-comment {
  position: relative;
  margin-bottom: 45px;
}

.single .single-comment h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.single .comment-list {
  list-style: none;
  padding: 0;
}

.single .comment-child {
  list-style: none;
}

.single .comment-body {
  display: flex;
  margin-bottom: 30px;
}

.single .comment-img {
  width: 60px;
}

.single .comment-img img {
  width: 100%;
}

.single .comment-text {
  padding-left: 15px;
  width: calc(100% - 60px);
}

.single .comment-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.single .comment-text span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}

.single .comment-text .btn {
  padding: 3px 10px;
  font-size: 14px;
  color: #14287b;
  background: #dddddd;
  border-radius: 0;
}

.single .comment-text .btn:hover {
  background: #d9ddea;
}

.single .comment-form {
  position: relative;
}

.single .comment-form h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}

.single .comment-form form {
  padding: 30px;
  background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
  margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
  border-radius: 0;
}

.single .comment-form .btn {
  padding: 15px 30px;
  color: #14287b;
  background: #d9ddea;
}

.single .comment-form .btn:hover {
  color: #d9ddea;
  background: #14287b;
}

/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
  position: relative;
  width: 100%;
}

@media (max-width: 991.98px) {
  .sidebar {
    margin-top: 45px;
  }
}

.sidebar .sidebar-widget {
  position: relative;
  margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 5px;
  font-size: 30px;
  font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #d9ddea;
}

.sidebar .sidebar-widget .search-widget {
  position: relative;
}

.sidebar .search-widget input {
  height: 50px;
  border: 1px solid #dddddd;
  border-radius: 0;
}

.sidebar .search-widget input:focus {
  box-shadow: none;
}

.sidebar .search-widget .btn {
  position: absolute;
  top: 6px;
  right: 15px;
  height: 40px;
  padding: 0;
  font-size: 25px;
  color: #d9ddea;
  background: none;
  border-radius: 0;
  border: none;
  transition: .3s;
}

.sidebar .search-widget .btn:hover {
  color: #14287b;
}

.sidebar .sidebar-widget .recent-post {
  position: relative;
}

.sidebar .sidebar-widget .tab-post {
  position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
  color: #d9ddea;
  background: #14287b;
  border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
  color: #14287b;
  background: #d9ddea;
}

.sidebar .tab-post .tab-content {
  padding: 15px 0 0 0;
  background: transparent;
}

.sidebar .tab-post .tab-content .container {
  padding: 0;
}

.sidebar .sidebar-widget .category-widget {
  position: relative;
}

.sidebar .category-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .category-widget ul li {
  margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .category-widget ul li a {
  display: inline-block;
  line-height: 23px;
}

.sidebar .category-widget ul li::before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d9ddea;
  left: 1px;
}

.sidebar .category-widget ul li span {
  display: inline-block;
  float: right;
}

.sidebar .sidebar-widget .tag-widget {
  position: relative;
  margin: -5px -5px;
}

.single .tag-widget a {
  margin: 5px;
  display: inline-block;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
  color: #d9ddea;
  background: #14287b;
}

.sidebar .image-widget {
  display: block;
  width: 100%;
  overflow: hidden;
}

.sidebar .image-widget img {
  max-width: 100%;
  transition: .3s;
}

.sidebar .image-widget img:hover {
  transform: scale(1.1);
}

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
  position: relative;
  padding: 45px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: -15px 0 25px 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  color: #14287b;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  background: #d9ddea;
  border: none;
  transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #14287b;
  color: #d9ddea;
}

.portfolio .load-more {
  text-align: center;
}

.portfolio .load-more .btn {
  padding: 15px 35px;
  font-size: 16px;
  transition: .3s;
}

.portfolio .load-more .btn:hover {
  color: #d9ddea;
  background: #14287b;
}

.portfolio .portfolio-warp {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.portfolio .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-img img {
  width: 100%;
  transition: .3s;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 40, 123, 0.7);
  transition: .5s;
  opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-overlay p {
  margin: 0;
  color: #ffffff;
}

.portfolio .portfolio-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #14287b;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: #d9ddea;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #14287b;
  background: #ffffff;
  border-radius: 0;
  transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
  color: #ffffff;
  background: #d9ddea;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.contact .col-md-6 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact .col-md-6:first-child {
  background: #14287b;
}

.contact .col-md-6:last-child {
  background: #d9ddea;
}

.contact .contact-info {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.contact .contact-item {
  position: relative;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  border: 1px solid rgba(256, 256, 256, 0.2);
}

.contact .contact-item [class^="flaticon-"]::before {
  margin: 0;
  color: #d9ddea;
  font-size: 40px;
}

.contact .contact-text {
  position: relative;
  width: auto;
  padding-left: 20px;
}

.contact .contact-text h2 {
  color: #d9ddea;
  font-size: 20px;
  font-weight: 600;
}

.contact .contact-text p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.contact .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  position: relative;
  padding: 0 15px;
}

.contact .contact-form input {
  color: #ffffff;
  height: 40px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(256, 256, 256, 0.4);
  background: transparent;
}

.contact .contact-form textarea {
  color: #ffffff;
  height: 185px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(256, 256, 256, 0.4);
  background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
  box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .btn {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #d9ddea;
  background: #14287b;
  border: none;
  border-radius: 0;
  transition: .3s;
}

.contact .contact-form .btn:hover {
  color: #14287b;
  background: #ffffff;
}

.contact .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
  position: relative;
  margin-top: 45px;
  padding: 90px 15px;
  background: #14287b;
  color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.footer .container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  width: 100%;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px;
}

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #d9ddea;
}

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #d9ddea;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  transition: .3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link a:hover {
  color: #d9ddea;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(256, 256, 256, 0.3);
  border-radius: 60px;
  transition: .3s;
}

.footer .footer-social a i {
  font-size: 15px;
  color: #ffffff;
}

.footer .footer-social a:hover {
  background: #d9ddea;
  border-color: #d9ddea;
}

.footer .footer-social a:hover i {
  color: #14287b;
}

.footer .newsletter .form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.footer .newsletter input {
  height: 50px;
  border: 2px solid #121518;
  border-radius: 0;
}

.footer .newsletter .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #d9ddea;
  background: #121518;
  border-radius: 0;
  border: 2px solid #d9ddea;
  transition: .3s;
}

.footer .newsletter .btn:hover {
  color: #121518;
  background: #d9ddea;
}

.footer .footer-menu .f-menu {
  position: relative;
  padding: 15px 0;
  font-size: 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .footer-menu .f-menu a {
  color: #ffffff;
  font-size: 16px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu .f-menu a:hover {
  color: #d9ddea;
}

.footer .footer-menu .f-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: #d9ddea;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
/*******************************/
/******* Contact Form CSS ******/
/*******************************/
.contact-form {
  position: relative;
  margin: 45px 0;
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 40, 123, 0.95) 0%, rgba(20, 40, 123, 0.85) 100%),
    url(../img/carousel-1.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-form .container {
  max-width: 900px;
}

.contact-form .section-header {
  margin-bottom: 50px;
}

.contact-form .section-header h2 {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form .section-header p {
  color: #d9ddea;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Modern form styling with improved visual hierarchy */
.modern-form {
  background: rgba(255, 255, 255, 0.98);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-col {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 0;
  text-align: left;
}

.form-group label {
  display: block;
  color: #14287b;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 18px;
  color: #d9ddea;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.contact-form .form-control {
  padding: 16px 20px 16px 50px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: #14287b;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .form-control::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.contact-form .form-control:focus {
  background: #ffffff;
  border-color: #d9ddea;
  box-shadow: 0 0 0 3px rgba(254, 242, 46, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.contact-form .form-control:hover {
  border-color: #d9ddea;
}

/* Textarea styling with icon support */
.textarea-wrapper {
  position: relative;
  display: flex;
}

.textarea-wrapper i {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #d9ddea;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.contact-form textarea.form-control {
  padding-left: 50px;
  resize: vertical;
  min-height: 120px;
  font-family: "Poppins", sans-serif;
}

.contact-form textarea.form-control:focus {
  box-shadow: 0 0 0 3px rgba(254, 242, 46, 0.1);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
}

.contact-form .btn-submit,
.contact-form .btn-secondary {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, #d9ddea 0%, #cbcbcb 100%);
  color: #14287b;
  box-shadow: 0 8px 20px rgba(254, 242, 46, 0.3);
}

.contact-form .btn-submit:hover {
  background: linear-gradient(135deg, #fff44f 0%, #ffd700 100%);
  box-shadow: 0 12px 30px rgba(254, 242, 46, 0.4);
  transform: translateY(-3px);
}

.contact-form .btn-submit:active {
  transform: translateY(-1px);
}

.contact-form .btn-secondary {
  background: #ffffff;
  color: #14287b;
  border: 2px solid #14287b;
}

.contact-form .btn-secondary:hover {
  background: #14287b;
  color: #d9ddea;
  box-shadow: 0 8px 20px rgba(20, 40, 123, 0.3);
}

.contact-form .btn-submit i,
.contact-form .btn-secondary i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .modern-form {
    padding: 35px 25px;
  }

  .contact-form .section-header h2 {
    font-size: 32px;
  }

  .form-actions {
    flex-direction: column;
  }

  .contact-form .btn-submit,
  .contact-form .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*******************************/
/******* Reviews CSS ***********/
/*******************************/
.reviews-section {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-section .section-header {
  margin-bottom: 50px;
}

.reviews-section .section-header h2 {
  font-size: 45px;
  font-weight: 700;
  color: #14287b;
  margin-bottom: 15px;
}

.reviews-section .section-header p {
  color: black;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Enhanced review card styling with modern shadows and hover effects */
.review-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border-left: 5px solid #d9ddea;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d9ddea 0%, #14287b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 12px 35px rgba(20, 40, 123, 0.15);
  transform: translateY(-8px);
  border-left-color: #14287b;
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 3px;
}

.review-stars i {
  color: #fef22e;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.review-card:hover .review-stars i {
  transform: scale(1.15);
}

.review-text {
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
  font-weight: 400;
}

.review-author {
  color: #14287b;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.review-title {
  color: black;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 20px;
  }

  .reviews-section .section-header h2 {
    font-size: 32px;
  }

  .review-card {
    padding: 30px;
  }
}
/* =========================
   FEATURE COLOR CONTROL
   ========================= */

/* Dark block */
.feature-dark {
  background: #14287b;
}

.feature-dark h3,
.feature-dark p,
.feature-dark i {
  color: #d9ddea;
}

/* Light block */
.feature-light {
  background: #d9ddea;
}

.feature-light h3,
.feature-light p,
.feature-light i {
  color: #14287b;
}

/* Icon background circle fix */
.feature-dark .feature-icon::after {
  background: #14287b;
}

.feature-light .feature-icon::after {
  background: #d9ddea;
}

/*******************************/
/*** Sticky Phone Icon CSS *****/
/*******************************/
/* Added sticky phone icon styling with pulsing animation */
.sticky-phone-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  /* Support safe area for devices with notches/home indicators */
  bottom: max(30px, env(safe-area-inset-bottom));
  right: max(30px, env(safe-area-inset-right));
}

.phone-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #03e388;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(253, 190, 51, 0.4);
  transition: all 0.3s ease;
  animation: pulse-phone 2s infinite;
}

.phone-call-btn:hover {
  background: #02673e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(253, 190, 51, 0.6);
  transform: scale(1.1);
}

.phone-call-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing animation */
@keyframes pulse-phone {
  0% {
    box-shadow: 0 4px 12px rgba(253, 190, 51, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(253, 190, 51, 0.8);
  }
  100% {
    box-shadow: 0 4px 12px rgba(253, 190, 51, 0.4);
  }
}

@media (max-width: 768px) {
  .sticky-phone-icon {
    bottom: 20px;
    right: 20px;
  }

  .phone-call-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .sticky-phone-icon {
    bottom: max(96px, calc(15px + env(safe-area-inset-bottom)));
    right: max(15px, env(safe-area-inset-right));
  }

  .phone-call-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
/* =========================
   LOGO IMAGE STYLE
   ========================= */

.logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img img {
  max-height: 48px;
  width: auto;
  height: auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Desktop */
@media (min-width: 992px) {
  .logo-img img {
    max-height: 52px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .logo-img img {
    max-height: 42px;
  }
}

/* Subtle hover effect (pro, not flashy) */
.logo-img:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}
/* =========================
   DROPDOWN HOVER EFFECT
   ========================= */

/* Background + text color on hover / focus */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #0d6efd; /* couleur principale (bleu Bootstrap) */
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Optional: active state (clicked item) */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #0b5ed7;
  color: #ffffff;
}

/* Optional: smooth spacing & cursor */
.dropdown-menu .dropdown-item {
  padding: 0.6rem 1rem;
  cursor: pointer;
}
/* Add select-specific styling to fix dropdown text visibility */
.contact-form select.form-control {
  min-height: 48px;
  padding: 14px 20px;
  height: auto;
  overflow: visible;
}

/* Ensure option elements in the dropdown display properly */
.contact-form select.form-control option {
  padding: 8px 10px;
  line-height: 1.5;
}

/* Add visible borders to all form inputs and selects */
.contact-form .form-control {
  border: 2px solid #14287b !important;
}

.contact-form .form-control:focus {
  border-color: #d9ddea !important;
}
/* Add these styles to your css/style.css or create a separate stylesheet */

/* Modern Video Player Styles */
.video-player-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(135deg, #14287b 0%, #1a3390 100%);
}

.video-player-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-banner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 12px;
  background: #000;
}

.video-player.playing {
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  position: relative;
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #d9ddea;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  transform: scale(1.15);
}

.play-button svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 20px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

.video-banner:hover .video-controls,
.video-controls:hover {
  opacity: 1;
}

.progress-container {
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: visible;
}

.progress-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #d9ddea 0%, #ffd700 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #d9ddea;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-handle {
  opacity: 1;
}

.controls-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #d9ddea;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.control-btn svg {
  width: 18px;
  height: 18px;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #d9ddea;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #d9ddea;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.time-display {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 8px;
}

.video-info {
  margin-top: 30px;
  padding: 30px;
  background: rgba(254, 242, 46, 0.1);
  border-left: 4px solid #d9ddea;
  border-radius: 8px;
  text-align: center;
}

.video-info h3 {
  color: #d9ddea;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.video-info p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .video-player-section {
    padding: 40px 0;
  }

  .video-controls {
    padding: 30px 15px 15px 15px;
  }

  .controls-bottom {
    flex-wrap: wrap;
  }

  .time-display {
    order: 3;
    width: 100%;
    margin: 10px 0 0 0;
  }

  .video-info {
    padding: 20px;
    margin-top: 20px;
  }

  .video-info h3 {
    font-size: 20px;
  }

  .video-info p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 60px;
    height: 60px;
  }

  .volume-slider {
    width: 50px;
  }

  .video-info h3 {
    font-size: 18px;
  }
}
