@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
:root {
  --main-color: #10222e;
  --second-color: #e8e8de;
  --black-color: #000000;
  --white-color: #ffffff;
  --third-color: #fcf2d3;
  --header-color: #4896c7;
  --background-btn: linear-gradient(
    90deg,
    var(--header-color) 0,
    var(--main-color) 100%
  );
  --background-btn-hover: linear-gradient(
    90deg,
    var(--main-color) 0,
    var(--header-color) 100%
  );
  --background-card: #051825;
  --placeholder-color: #a1a1a1;
  --padding: 20px;
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none !important;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2 {
  font-family: "Great Vibes", cursive !important;
}
body {
  background-color: var(--main-color);
}
html,
body {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  font-family: "Quicksand", sans-serif;
}

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

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

.text-main {
  color: var(--main-color);
}

.bg-main {
  background-color: var(--main-color);
}

.btn-send {
  background: var(--background-btn);
  color: var(--white-color);
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 90, 150, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);
    i {
      transform: translateX(5px);
    }
  }
}

.btn-more {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--header-color);

  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  &:hover {
    background: var(--header-color);
    color: #fff;
    i {
      transform: rotate(0deg);
    }
  }
}

.header-section {
  h2 {
    color: var(--header-color);
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
  }
}

/*  
##################################################
#                  SOCIAL ICONS                  #
##################################################
*/
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;

  a {
    background: var(--background-btn) !important;
    color: var(--white-color);
    padding: 0.8rem;
    border-radius: 10px;
    margin: 0.5rem;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border: none;
    &:hover {
      background: var(--background-btn-hover) !important;
      border: none;
      color: var(--white-color);
      transform: translateY(-5px) scale(1.05);
      filter: brightness(1.1);
    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  inset-inline-end: 30px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--background-btn) !important;
  color: var(--white-color);
  border-radius: 10px;
  border: none;
  font-size: 25px;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  z-index: 998;
  cursor: pointer;

  &:hover {
    background: var(--background-btn-hover) !important;
    border: none;
    color: var(--white-color);
    transform: translateY(-5px) scale(1.05);
  }
}

.back-to-top.show {
  display: flex !important;
}

/*  
##################################################
#                  LOADING                       #
##################################################
*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .loader-container {
    position: relative;

    width: 250px;
    height: 250px;
  }

  .pulse-circle img {
    width: 100%;
    height: 100%;
  }
}

/*  
##################################################
#                   Navbar                       #
##################################################
*/
.fixed {
  .navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background-color: var(--main-color);

    .container {
      box-shadow: none;
    }
    .btn-lang {
      background: var(--background-btn);
      color: #fff;
      border-radius: 12px;
      padding: 14px 32px;

      font-weight: 600;
      font-size: 16px;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(0, 90, 150, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
      i {
        font-size: 14px;
        transition: transform 0.3s ease;
      }
      &:hover {
        background: var(--background-btn-hover);
        box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);
        i {
          transform: translateX(5px);
        }
      }
    }
  }
}

.navbar {
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
  backdrop-filter: blur(5px);
  box-shadow: none;
  .container {
    transition: all 0.3s ease;
    z-index: 1000;

    .navbar-brand {
      img {
        transition: transform 0.3s ease;
      }

      &:hover img {
        transform: scale(1.05);
      }
    }

    .navbar-toggler {
      color: var(--second-color);

      &:focus {
        box-shadow: none;
      }
    }
    /* Dropdown on Hover with Animation */
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
    }

    .dropdown-menu {
      margin-top: 0;

      background: linear-gradient(
        135deg,
        rgba(16, 34, 46, 0.8) 0,
        rgba(255, 255, 255, 0.1) 100%
      ) !important;
      a {
        color: var(--third-color) !important;
        &:hover {
          background: linear-gradient(
            135deg,
            rgba(139, 115, 85, 0.1) 0%,
            rgba(155, 134, 119, 0.1) 100%
          );
          color: var(--white-color) !important;
        }
      }
    }

    .navbar-collapse {
      .nav-link {
        color: var(--third-color);
        font-weight: 600;
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;

        &.active {
          background: linear-gradient(
            135deg,
            rgba(139, 115, 85, 0.1) 0%,
            rgba(155, 134, 119, 0.1) 100%
          );
        }

        &:hover {
          background: linear-gradient(
            135deg,
            rgba(139, 115, 85, 0.1) 0%,
            rgba(155, 134, 119, 0.1) 100%
          );
          color: var(--white-color) !important;
          transform: translateY(-2px);
        }
      }
    }
  }
  .btn-lang {
    background: var(--background-btn);
    color: #fff;
    border-radius: 12px;
    padding: 14px 32px;

    font-weight: 600;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 90, 150, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }
    &:hover {
      background: var(--background-btn-hover);
      box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);
      i {
        transform: translateX(5px);
      }
    }
  }
}

.offcanvas {
  border-right: 4px solid var(--third-color) !important;
  background-color: var(--main-color) !important;
  height: 100vh;
  .btn-close {
    filter: brightness(0) invert(1);
  }
  .offcanvas-body {
    padding-top: 20px;
    height: 100%;
    .navbar-nav {
      .nav-item {
        .nav-link {
          padding: 12px 0px;
          color: var(--third-color) !important;
          font-weight: 600;
          font-size: 16px;
          transition: all 0.3s ease;

          &:hover {
            background: linear-gradient(
              135deg,
              rgba(139, 115, 85, 0.1) 0%,
              rgba(155, 134, 119, 0.1) 100%
            );
           
            color: var(--white-color) !important;
            transform: translateY(-2px);
            width: 100% !important;

            padding: 12px 24px;
          }
          &.active {
            width: 100% !important;

            padding: 12px 24px;
            background: linear-gradient(
              135deg,
              rgba(139, 115, 85, 0.1) 0%,
              rgba(155, 134, 119, 0.1) 100%
            );
          }
        }
      }
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
      }
  
      .dropdown-menu {
        margin-top: 0;
  
        background: linear-gradient(
          135deg,
          rgba(16, 34, 46, 0.8) 0,
          rgba(255, 255, 255, 0.1) 100%
        ) !important;
        a {
          color: var(--third-color) !important;
          &:hover {
            background: linear-gradient(
              135deg,
              rgba(139, 115, 85, 0.1) 0%,
              rgba(155, 134, 119, 0.1) 100%
            );
            color: var(--white-color) !important;
          }
        }
      }
    }

    .list-contact {
      background: linear-gradient(
        135deg,
        rgba(139, 115, 85, 0.05) 0%,
        rgba(155, 134, 119, 0.05) 100%
      );
      border: 1px solid rgba(139, 115, 85, 0.2);
      strong,
      span {
        color: var(--second-color) !important;
      }
      a {
  
        color: var(--third-color) !important;
        transition: color 0.3s ease;

        &:hover {
          color: var(--white-color) !important;
        }
      }

      .border-bottom {
        border-color: rgba(139, 115, 85, 0.2) !important;
      }
    }

    .header-social {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding-top: 12px;
      border-top: 1px solid rgba(139, 115, 85, 0.2);

      .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--white-color);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;

        &:hover {
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(139, 115, 85, 0.4);
          background: var(--second-color);
          color: var(--main-color) !important;
        }
      }
    }
  }
}

/*  
##################################################
#                     Home                       #
##################################################
*/

.hero {
  .hero-slider {
    height: 100vh;
    img {
      height: 100vh;
      width: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }
    .swiper-slide {
      img {
        transform: scale(1.15);
        transition: transform 1s ease;
        filter: blur(2px);
      }
    }
    .swiper-slide-active {
      img {
        transform: scale(1);
        filter: blur(0);
      }
    }
  }

  .hero-content {
    color: var(--second-color);
    left: 10%;
    bottom: 80px;
    h1 {
      font-size: 70px;
    }
  }
}

.hero-mobile {
  .hero-slider-mobile {
    height: 60vh;
    img {
      height: 60vh;
      width: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }
    .swiper-slide {
      img {
        transform: scale(1.15);
        transition: transform 1s ease;
        filter: blur(2px);
      }
    }
    .swiper-slide-active {
      img {
        transform: scale(1);
        filter: blur(0);
      }
    }
  }

  .hero-content {
    color: var(--second-color);
    left: 20px;
    bottom: 30px;
    h1 {
      font-size: 45px;
    }
  }
}

.hero-pages {
  background: linear-gradient(
    135deg,
    #0b3c5d 20%,
    var(--main-color) 50%,
    #051825 100%
  );

  .hero-content {
    margin-top: 80px;
  }
  .breadcrumb-item{
    color: var(--third-color);
  }
}

.hero-pages .contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/*  
##################################################
#                   About Us                     #
##################################################
*/

.about-section,
.about,
.our-vision,
.our-mission,
.appointment-section {
  .img-one,
  .img-mission,
  .img-vision {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 22px;
    transition: transform 0.3s ease;
    &:hover {
      transform: scale(1.05);
    }
    img {
      transition: transform 0.3s ease;
    }
  }

  /* ===============================
     Images Wrapper
  =============================== */
  .about-images {
    position: relative;
    width: 100%;
    height: 650px;
    isolation: isolate;
  }

  .about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.8s ease;
  }

  /* ===============================
     Main Image (Back)
  =============================== */
  .img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    transform: rotate(-3deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 1;
    overflow: hidden;
    border-radius: 26px;
    transition: transform 0.6s ease;
  }

  /* ===============================
     Overlay Image (Front)
  =============================== */
  .img-overlay {
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -20px;
    right: -10px;
    transform: rotate(4deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: transform 0.6s ease;
    border-radius: 26px;
  }

  /* ===============================
     Glass Light Effect
  =============================== */
  .img-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 60%
    );
    transform: translateX(-100%);
    z-index: 3;
    pointer-events: none;
  }

  /* ===============================
     Hover Effects
  =============================== */
  .about-images:hover {
    &::after {
      transform: translateX(100%);
      transition: transform 0.9s ease;
    }

    .img-main {
      transform: rotate(0deg) scale(1.1);
    }

    .img-overlay {
      transform: rotate(0deg) scale(1.1);
    }
  }
}

/* .our-vision {
  background: #fafafa;
} */

/*  
##################################################
#                   Services                     #
##################################################
*/
.services-section {
  .service-tabs {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    display: flex;
    backdrop-filter: blur(10px);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .nav-item {
      flex: 1;
      .nav-link {
        text-wrap: nowrap;
        border-radius: 0px;
        font-size: 18px;
        font-weight: 500;
        background: rgba(16, 34, 46, 0.2);
        color: var(--second-color);
        width: 100%;

        height: 100%;
        &.active {
          background: rgba(11, 60, 93, 0.502);
          padding: 30px 20px;
          width: 100%;
          color: var(--white-color);
        }
      }
    }
  }
  .service-card {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.9),
      rgba(255, 255, 255, 0.1)
    );
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    &:hover {
      .service-image {
        transform: scale(1.12);
      }
      .service-content {
        .service-overlay {
          opacity: 1;
        }

        .service-buttons {
          position: relative;
          z-index: 3;
          opacity: 1;
          transform: translateY(0);
        }
      }
    }

    /* IMAGE */
    .service-image-wrapper {
      position: relative;

      overflow: hidden;
      border-radius: 22px;
      height: 520px !important;
      .service-image {
        width: 100%;
        height: 100% !important;
        border-radius: 22px;
        object-fit: cover;
        transition: transform 0.8s ease;
      }

      /* Gradient Overlay */
    }

    /* CONTENT */
    .service-content {
      border-radius: 22px;

      padding: 20px;

      z-index: 2;

      .service-title {
        color: #fff;
        font-size: 2.8rem;
        font-weight: 700;
        width: 73%;
        line-height: 1.6;
      }
      p {
        font-size: 1.2rem;
        line-height: 2;
      }
      .service-buttons {
        display: flex;

        gap: 14px;

        /* transform: translateY(30px); */
        margin-top: 30px;
        transition: all 0.4s ease;

        .btn-book {
          padding: 10px 28px !important;
          border-radius: 10px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 0.95rem;
          font-weight: 600;
          background: var(--header-color);
          color: #fff;
          border: none;
          transition: all 0.3s ease;

          &:hover {
            background-color: darken(#4896c7, 10%);
          }
        }
      }
    }
  }
}
.services {
  .service-card {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.9),
      rgba(255, 255, 255, 0.1)
    );
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    &:hover {
      .service-image {
        transform: scale(1.12);
      }
      .service-content {
        .service-overlay {
          opacity: 1;
        }

        .service-buttons {
          position: relative;
          z-index: 3;
          opacity: 1;
          transform: translateY(0);
        }
      }
    }

    /* IMAGE */
    .service-image-wrapper {
      position: relative;

      overflow: hidden;
      border-radius: 22px;
      height: 400px !important;
      .service-image {
        width: 100%;
        height: 100% !important;
        border-radius: 22px;
        object-fit: cover;
        transition: transform 0.8s ease;
      }

      /* Gradient Overlay */
    }

    /* CONTENT */
    .service-content {
      border-radius: 22px;
      padding: 30px 20px;

      z-index: 2;

      .service-title {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;

        line-height: 1.6;
      }
      p {
        font-size: 1.2rem;
        line-height: 2;
      }
      .service-buttons {
        display: flex;

        gap: 14px;

        /* transform: translateY(30px); */
        margin-top: 30px;
        transition: all 0.4s ease;

        .btn-book {
          padding: 10px 28px !important;
          border-radius: 10px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 0.95rem;
          font-weight: 600;
          background: var(--header-color);
          color: #fff;
          border: none;
          transition: all 0.3s ease;

          &:hover {
            background-color: darken(#4896c7, 10%);
          }
        }
      }
    }
  }
}
.service-details-section {
  background-color: var(--main-color);

  .sidebar {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.9),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);

    .service-link,
    .department-link {
      text-decoration: none;
      color: var(--third-color);
      font-weight: 500;
      display: block;
      padding: 10px 15px;
      border-radius: 8px;
      border: 1px solid #0b3c5d;
      transition: all 0.3s ease;

      &:hover,
      &.active {
        background-color: var(--main-color);
        color: #fff;
        transform: translateX(5px);
      }
    }
  }

  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }

  .btn-more {
    position: relative;
    transition: all 0.5s ease;

    .btn-content {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
      color: var(--main-color);
    }

    &::before,
    &::after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 0;
    }

    &::before {
      border-width: 30px 30px 0 0;
      border-color: var(--fourth-color) transparent transparent transparent;
      top: 0;
      left: 0;
    }

    &::after {
      border-width: 0 0 30px 30px;
      border-color: transparent transparent var(--fourth-color) transparent;
      bottom: 0;
      right: 0;
    }

    &:hover {
      &::before {
        border-width: 350px 350px 0 0;
        top: 0;
        left: 0;
      }

      &::after {
        border-width: 0 0 350px 350px;
        bottom: 0;
        right: 0;
      }

      .btn-content {
        color: var(--white-color) !important;
      }
    }
  }
}

/*  
##################################################
#                 Testimonial                    #
##################################################
*/

.testimonial-section {
  background: linear-gradient(135deg, var(--main-color) 50%, #0b3c5d 100%);

  .testimonial-card {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    );
    color: var(--white-color);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    gap: 18px;
    height: 200px;
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/*  
##################################################
#                   Contact US                   #
##################################################
*/
.contact-section {
  position: relative;
  &::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 50%, #0b3c5d 100%);
    opacity: 0.8;
  }
  .contact-cards {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .col-lg-4 {
      border-right: 1px solid var(--white-color);
      &:last-of-type {
        border-right: none;
      }
    }
    .contact-card {
      .icon {
        width: 60px;
        height: 60px;
        background: rgba(72, 150, 199, 0.1);
        color: #4896c7;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 22px;
        margin: 0 auto 15px;
      }
      h5 {
        font-weight: 600;
        margin-bottom: 8px;
      }
      p {
        font-size: 14px;
        color: white;
      }
      a,
      span {
        display: block;
        font-size: 16px;
        color: var(--third-color);
        text-decoration: none;
      }
      a:hover {
        color: var(--white-color);
      }
    }
  }

  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .map-wrapper {
    width: 100%;
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}
.contact {
  .contact-tabs {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );

    backdrop-filter: blur(10px);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    transition: all 0.35s ease;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .nav-item {
      flex: 1;
      .nav-link {
        text-wrap: nowrap;
        border-radius: 0px;
        font-size: 18px;
        font-weight: 500;
        background: rgba(16, 34, 46, 0.2);
        color: var(--second-color);
        width: 100%;

        height: 100%;
        &.active {
          background: rgba(11, 60, 93, 0.502);
          padding: 30px 20px;
          width: 100%;
          color: var(--white-color);
        }
      }
    }
  }
  .contact-cards {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);

    padding: 30px 20px;
    text-align: center;

    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .col-lg-3 {
      border-right: 1px solid var(--white-color);
      &:last-of-type {
        border-right: none;
      }
    }
    .contact-card {
      .icon {
        width: 60px;
        height: 60px;
        background: rgba(72, 150, 199, 0.1);
        color: #4896c7;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 22px;
        margin: 0 auto 15px;
      }
      h5 {
        font-weight: 600;
        margin-bottom: 8px;
      }
      p {
        font-size: 14px;
        color: white;
      }
      a,
      span {
        display: block;
        font-size: 16px;
        color: var(--third-color);
        text-decoration: none;
      }
      a:hover {
        color: var(--white-color);
      }
    }
  }

  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .map-wrapper {
    width: 100%;
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}
/*  
##################################################
#                    Blogs                       #
##################################################
*/
.blogs-section {
  background-color: var(--main-color);
}

/* Card */
.blog-card {
  background: linear-gradient(
    135deg,
    rgba(16, 34, 46),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 102, 204, 0.18);
}

/* Image */
.blog-card .image-wrapper {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* Content */
.blog-card .card-body {
  padding: 25px;
}

.blog-card h5 {
  color: var(--third-color);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 15px;
  color: var(--white-color);
  line-height: 1.7;
}

/* Links */
.blog-card a {
  display: block;
  height: 100%;
}

/*  
##################################################
#                  Blog Details                  #
##################################################
*/
.blog-details-section {
  background-color: var(--main-color);
  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
    i {
      color: var(--white-color);
      margin-right: 6px;
    }
  }

  .article-content p {
    line-height: 1.8;
    color: var(--white-color);
  }
  .section-title {
    color: var(--white-color);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
  }

  .custom-list {
    padding-left: 20px;
    li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 15px;
      color: var(--white-color);
      &::before {
        content: "✔";
        position: absolute;
        left: -15px;
        color: var(--white-color);
        font-size: 14px;
      }
    }
  }
}

/*  
##################################################
#                    Footer                      #
##################################################
*/

.footer-title {
  color: var(--third-color);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
}

.footer-text {
  line-height: 1.8;
  color: var(--white-color);
}

.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list {
  li {
    margin-bottom: 12px;
  }
}

.footer-link {
  color: var(--white-color);
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--third-color);
    transition: width 0.3s ease;
  }

  &:hover {
    color: var(--third-color);
    padding-left: 6px;

    &::before {
      width: 100%;
    }
  }
}

.footer-contact {
  li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--white-color);
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;

    &:hover {
      color: var(--third-color);
    }
  }
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;

  a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    &:hover {
      background: var(--third-color);
      color: var(--main-color);
      transform: translateY(-3px);
    }
  }
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 40px 0 20px;
}

.copyright {
  p {
    margin: 0;
    font-size: 18px;
    color: var(--white-color);
  }

  a {
    color: var(--header-color);
    text-decoration: none;

    &:hover {
      color: var(--second-color);
    }
  }
}
