@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --main-color: #00185f;
  --second-color: #fe002b;
  --black-color: #000000;
  --white-color: #ffffff;
  --third-color: #8998b1;
  --fourth-color: #f1f8ff;
  --background-btn: linear-gradient(
    135deg,
    var(--second-color) 0%,
    #e61135 60%,
    #d6213f 100%
  );
  --background-btn-hover: linear-gradient(
    -135deg,
    var(--second-color) 0%,
    #e61135 60%,
    #d6213f 100%
  );
  --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: "Nunito", sans-serif !important;
}

html,
body {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
  font-family: "Montserrat", 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: 50px;
  font-weight: 600;
  font-size: 16px;
  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(--main-color);

  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;

  i {
    transition: all 0.3s ease;
  }

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

    i {
      transform: rotate(0deg);
    }
  }
}

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

  p {
    color: var(--third-color);
    font-size: 18px;
  }
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;
  background-color: var(--fourth-color);
  border-radius: 50px;

  border: 1px solid var(--third-color);

  a {
    background: var(--background-btn) !important;
    color: var(--white-color);
    border-radius: 50px;
    margin: 0.3rem;
    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;
      color: var(--white-color);
      transform: 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: 1px solid var(--third-color);
  border-radius: 50px;

  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;
    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(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .loader-container {
    position: relative;

    width: 300px;
    height: 300px;
  }

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

/* ================================
   NAVBAR
================================ */
.header {
  transition: all 0.3s ease;
}
/* ================================
   NAVBAR BASE
================================ */
.navbar {
  transition: all 0.3s ease;

  box-shadow: none !important;

  .container-fluid {
    transition: all 0.3s ease;
    z-index: 1000;
  }

  /* ================================
     NAVBAR BRAND
  ================================ */
  .navbar-brand {
    img {
      transition: transform 0.3s ease;
    }

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

  /* ================================
     NAVBAR TOGGLER
  ================================ */
  .navbar-toggler {
    color: var(--second-color);

    &:focus {
      box-shadow: none;
    }
  }

  /* ================================
     NAVBAR COLLAPSE & NAV LINKS
  ================================ */
  .navbar-collapse {
    .navbar-nav {
      border: 1px solid var(--third-color);
      background: var(--fourth-color);
      border-radius: 50px;

      transition: all 0.4s ease;
    }

    .nav-link {
      color: var(--main-color);
      font-weight: 600;
      font-size: 16px;
      padding: 12px 32px;
      border-radius: 50px;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;

      &.active {
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
      }

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

      /* Active State Enhancement */
      &:active {
        transition: all 0.2s ease;
      }
    }
  }

  /* ================================
   DROPDOWN MENU – MAIN
================================ */
  .nav-item.dropdown {
    position: relative;

    &:hover > .dropdown-menu {
      display: block;
      transform: translateY(0);
    }
  }

  .dropdown-menu {
    display: none;

    transform: translateY(10px);
    transition: all 0.25s ease;
    margin-top: 0;
    padding: 8px 0;
    border-radius: 8px;
    min-width: 230px;

    a {
      color: var(--third-color) !important;
      font-weight: 500;
      transition: all 0.25s ease;

      &:hover {
        color: var(--main-color) !important;
        background-color: rgba(0, 0, 0, 0.03);
      }
    }
  }

  /* ================================
   SUBMENU (LEVEL 2)
================================ */
  .dropdown-submenu {
    position: relative;

    > .dropdown-menu {
      position: absolute;
      top: 0;
      left: 100%;
      display: none;
      transform: translateX(10px);
      transition: all 0.25s ease;
      border-radius: 8px;
      min-width: 220px;
    }

    &:hover > .dropdown-menu {
      display: block;
      transform: translateX(0);
    }

    > .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      position: relative;

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

        i {
          transform: translateX(6px);
        }
      }

      i {
        font-size: 13px;
        transition: transform 0.25s ease;
      }
    }
  }

  /* ================================
   DIVIDER
================================ */
  .dropdown-divider {
    margin: 6px 0;
    opacity: 0.15;
  }

  /* ================================
     LANGUAGE BUTTON
  ================================ */
  .btn-lang {
    background: var(--background-btn);
    color: var(--white-color);
    border-radius: 50px;
    padding: 12px 34px;
    font-weight: 600;
    font-size: 16px;

    transition: all 0.3s ease;
    cursor: pointer;

    i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    &:hover {
      background: var(--background-btn-hover);

      i {
        transform: translateX(5px);
      }
    }
  }
}

/* ================================
   FIXED NAVBAR STATE
================================ */
.fixed-top {
  transition: all 0.3s ease;

  .navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    background-color: var(--white-color);
  }
}

/* ================================
   OFFCANVAS (MOBILE MENU)
================================ */
.offcanvas {
  border-right: 4px solid var(--third-color) !important;
  background-color: var(--white-color) !important;
  height: 100vh;

  .offcanvas-body {
    padding-top: 20px;
    height: 100%;

    /* ================================
       MOBILE NAV LINKS
    ================================ */
    .navbar-nav {
      .nav-item {
        .nav-link {
          padding: 12px 0;
          color: var(--main-color) !important;
          font-weight: 600;
          font-size: 16px;
          transition: all 0.3s ease;

          &:hover {
            background: linear-gradient(
              90deg,
              rgba(254, 0, 43, 0.15) 0%,
              transparent 100%
            );
            border-left: 2px solid var(--second-color);
            color: var(--main-color) !important;
            transform: translateY(-2px);
            width: 100% !important;
            padding: 12px 24px;
          }

          &.active {
            width: 100% !important;
            padding: 12px 24px;
            background: linear-gradient(
              90deg,
              rgba(254, 0, 43, 0.15) 0%,
              transparent 100%
            );
            border-left: 2px solid var(--second-color);
          }
        }
      }

      /* ================================
         MOBILE DROPDOWN
      ================================ */
      .nav-item.dropdown {
        position: relative;
        width: 100%;

        &:hover > .dropdown-menu,
        &.active > .dropdown-menu {
          display: block;
          transform: translateY(0);
          opacity: 1;
        }
      }

      .dropdown-menu {
        display: none;
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 8px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* transform: translateY(-10px); */
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

        &.active {
          display: block;

          transform: translateY(0);
          opacity: 1;
        }

        .dropdown-item {
          padding: 12px 24px;
          color: var(--third-color) !important;
          font-weight: 500;
          font-size: 15px;
          transition: all 0.3s ease;
          border-left: 3px solid transparent;

          &:hover,
          &:focus {
            color: var(--main-color) !important;
            background: linear-gradient(
              90deg,
              rgba(254, 0, 43, 0.1) 0%,
              transparent 100%
            );
            border-left: 2px solid var(--second-color);
            padding-left: 30px;
          }

          &.active {
            color: var(--main-color) !important;
            background: linear-gradient(
              90deg,
              rgba(254, 0, 43, 0.15) 0%,
              transparent 100%
            );
            border-left: 2px solid var(--second-color);
            font-weight: 600;
          }
        }
      }

      /* ================================
         MOBILE SUBMENU (LEVEL 2)
      ================================ */
      .dropdown-submenu {
        position: relative;
        width: 100%;

        > .dropdown-item {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 12px 24px;
          position: relative;
        }

        > .dropdown-menu {
          position: static !important;
          height: auto;
          display: none;

          background: rgba(255, 255, 255, 0.03);
          border-left: 2px solid var(--second-color);
          border-radius: 8px;
          margin-bottom: 20px;
          opacity: 0;
          transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

          &.active,
          &.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
          }

          .dropdown-item {
            padding: 10px 24px 10px 30px;
            font-size: 14px;

            &:hover {
              padding-left: 35px;
            }
          }
        }

        &:hover > .dropdown-menu {
          display: block;
          transform: translateY(0);
          opacity: 1;
        }
      }
    }

    /* ================================
       CONTACT INFO
    ================================ */
    .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;
      }
    }

    /* ================================
       SOCIAL ICONS
    ================================ */
    .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: 50px;
        background: var(--second-color);
        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(--white-color) !important;
        }
      }
    }
  }
}

/* ================================
   HOME
================================ */

.hero {
  .hero-slider {
    position: relative;
    /* height: calc(100vh - 90px);
     */
    height: 100%;
    overflow: hidden;
    .hero-image {
      position: relative;
      height: calc(100vh - 150px);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;

      /* Fixed Red Background with Gradient */
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 85%;
        width: 75%;
        background: linear-gradient(
          135deg,
          var(--second-color) 0%,
          rgba(254, 0, 43, 0.9) 50%,
          var(--second-color) 100%
        );
        border: 4px solid var(--fourth-color);
        border-radius: 60px;
        z-index: 1;
        box-shadow: 0 20px 60px rgba(254, 0, 43, 0.4),
          0 0 0 10px rgba(254, 0, 43, 0.1),
          inset 0 0 60px rgba(255, 255, 255, 0.1);
        animation: backgroundPulse 4s ease-in-out infinite;
      }

      /* Decorative Elements */
      &::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 90%;
        border: 2px dashed rgba(255, 255, 255, 0.2);
        border-radius: 60px;
        z-index: 1;
        pointer-events: none;
        animation: rotateBorder 20s linear infinite;
      }

      img {
        height: 480px !important;
        width: 100% !important;
        max-width: 90%;
        object-fit: cover;
        position: relative;
        z-index: 2;
        border-radius: 50px !important;
        transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3),
          0 0 0 1px rgba(255, 255, 255, 0.1);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
      }
    }

    .swiper-slide {
      img {
        transform: scale(1.15) translateX(-30px) rotateY(5deg);
        transition: all 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        filter: blur(5px) brightness(0.6) saturate(0.8);
        opacity: 0.5;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        opacity: 0;
        transform: translateY(40px) translateX(-40px) scale(0.95);
        transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-delay: 0.3s;

        h1 {
          color: var(--main-color);
          font-size: 70px;
          font-weight: 800;
          line-height: 1.2;
          transform: translateY(30px) scale(0.9);
          opacity: 0;
          transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
          transition-delay: 0.5s;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          background: linear-gradient(
            135deg,
            var(--main-color) 0%,
            rgba(0, 24, 95, 0.8) 100%
          );
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        p {
          color: var(--third-color);
          font-size: 18px;
          line-height: 1.8;
          transform: translateY(30px);
          opacity: 0;
          transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
          transition-delay: 0.7s;
        }
      }
    }

    .swiper-slide-active {
      img {
        transform: scale(1) translateX(0) rotateY(0deg);
        filter: blur(0) brightness(1) saturate(1);
        opacity: 1;

        &:hover {
          transform: scale(1.03) translateX(0) rotateY(0deg);
          box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.2);
        }
      }

      .hero-content {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);

        h1 {
          transform: translateY(0) scale(1);
          opacity: 1;
        }

        p {
          transform: translateY(0);
          opacity: 1;
        }
      }
    }
  }
}

.hero-mobile {
  position: relative;
  height: 80vh;
  overflow: hidden;

  .hero-slider-mobile {
    position: relative;
    height: 60vh;

    /* Fixed Red Background with Animation */
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      height: 70%;
      background: linear-gradient(
        135deg,
        var(--second-color) 0%,
        rgba(254, 0, 43, 0.95) 50%,
        var(--second-color) 100%
      );
      border: 4px solid var(--fourth-color);
      border-radius: 50px;
      z-index: 1;
      box-shadow: 0 20px 60px rgba(254, 0, 43, 0.4),
        0 0 0 10px rgba(254, 0, 43, 0.15),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
      animation: mobileBackgroundPulse 4s ease-in-out infinite;
    }

    /* Decorative Border */
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 95%;
      height: 70%;
      border: 2px dashed rgba(255, 255, 255, 0.25);
      border-radius: 50px;
      z-index: 0;
      pointer-events: none;
    }

    .swiper-slide {
      position: relative;
      z-index: 2;
      padding: 15px 0;

      .hero-content-mobile {
        position: relative;
        z-index: 3;
        padding: 20px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.98) 0%,
          rgba(255, 255, 255, 0.95) 100%
        );
        backdrop-filter: blur(10px);
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
          0 0 0 1px rgba(255, 255, 255, 0.5);
        margin-bottom: 25px;
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-delay: 0.2s;

        h1 {
          color: var(--main-color);
          font-size: 26px;
          font-weight: 800;
          line-height: 1.3;
          margin-bottom: 15px;
          background: linear-gradient(
            135deg,
            var(--main-color) 0%,
            rgba(0, 24, 95, 0.85) 100%
          );
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          transform: translateY(15px);
          opacity: 0;
          transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
          transition-delay: 0.4s;
        }

        p {
          color: var(--third-color);
          font-size: 15px;
          line-height: 1.7;
          margin: 0;
          transform: translateY(15px);
          opacity: 0;
          transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
          transition-delay: 0.6s;
        }
      }

      .hero-image-mobile {
        position: relative;

        padding: 0 15px;

        z-index: 4;

        img {
          width: 100% !important;
          height: 400px !important;
          object-fit: cover;
          border-radius: 35px;
          box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25),
            0 0 0 3px rgba(255, 255, 255, 0.15);
          transform: scale(1.15);
          filter: blur(4px) brightness(0.6) saturate(0.8);
          opacity: 0.5;
          transition: all 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
      }
    }

    .swiper-slide-active {
      .hero-content-mobile {
        opacity: 1;
        transform: translateY(0) scale(1);

        h1 {
          transform: translateY(0);
          opacity: 1;
        }

        p {
          transform: translateY(0);
          opacity: 1;
        }
      }

      .hero-image-mobile {
        img {
          transform: scale(1) translateY(0);
          filter: blur(0) brightness(1) saturate(1);
          opacity: 1;
        }
      }
    }
  }

  /* Keyframe Animation for Mobile Background */
  @keyframes mobileBackgroundPulse {
    0%,
    100% {
      box-shadow: 0 20px 60px rgba(254, 0, 43, 0.4),
        0 0 0 10px rgba(254, 0, 43, 0.15),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    }

    50% {
      box-shadow: 0 25px 70px rgba(254, 0, 43, 0.5),
        0 0 0 12px rgba(254, 0, 43, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.15);
    }
  }
}

/* ================================
   KEYFRAME ANIMATIONS
================================ */
@keyframes backgroundPulse {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(254, 0, 43, 0.4),
      0 0 0 10px rgba(254, 0, 43, 0.1), inset 0 0 60px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 25px 70px rgba(254, 0, 43, 0.5),
      0 0 0 12px rgba(254, 0, 43, 0.15),
      inset 0 0 80px rgba(255, 255, 255, 0.15);
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.2;
  }
}

.page-banner {
  background: linear-gradient(
    180deg,
    var(--fourth-color) 60%,
    rgba(137, 152, 177, 0.3) 100%
  );
  color: var(--main-color);
  height: 30vh;
  display: flex;
  align-items: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: var(--main-color);

  a {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;

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

  &.active {
    color: var(--second-color);
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--main-color);
  padding: 0 10px;
}

/* ================================
   ABOUT US
================================ */

.about-section {
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
      circle,
      rgba(254, 0, 43, 0.05) 0%,
      transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
  }

  .about-image-wrapper {
    position: relative;
    z-index: 1;
  }

  .about-image {
    position: relative;

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 200px;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

      &.image-left {
        width: 250px;
        height: 750px;

        z-index: 2;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
          0 0 0 8px rgba(255, 255, 255, 0.8),
          0 0 0 12px rgba(241, 248, 255, 0.9);

        &:hover {
          width: 350px;
          border-radius: 50px;
          z-index: 3;
        }
      }

      &.image-right {
        width: 250px;
        height: 750px;

        z-index: 1;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
          0 0 0 8px rgba(255, 255, 255, 0.8),
          0 0 0 12px rgba(241, 248, 255, 0.9);

        &:hover {
          width: 350px;
          border-radius: 50px;
          z-index: 3;
        }
      }

      .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      &:hover {
        .about-img {
          transform: scale(1.1);
        }
      }
    }
  }

  .about-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;

    .section-label {
      display: inline-block;
      padding: 8px 20px;
      background: var(--main-color);
      color: white;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 50px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 42px;
      font-weight: 800;
      color: var(--main-color);
      line-height: 1.3;
      margin-bottom: 25px;
      background: linear-gradient(
        135deg,
        var(--main-color) 0%,
        rgba(0, 24, 95, 0.8) 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .lead-text {
      font-size: 18px;
      line-height: 1.8;
      color: var(--third-color);
      margin-bottom: 35px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 25px;

      .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;

        &:hover {
          transform: translateX(10px);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          background: rgba(255, 255, 255, 1);
        }

        .feature-icon {
          flex-shrink: 0;
          width: 50px;
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--background-btn);
          color: white;
          border-radius: 50px;
          font-size: 20px;
          box-shadow: 0 5px 15px rgba(254, 0, 43, 0.1);
        }

        .feature-text {
          flex: 1;

          h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 8px;
          }

          p {
            font-size: 15px;
            color: var(--third-color);
            line-height: 1.6;
            margin: 0;
          }
        }
      }
    }
  }
}

.about-section-page {
  .about-image {
    img {
      border: 1px solid rgba(137, 152, 177, 0.15);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      height: 500px;
      object-fit: cover;

      &:hover {
        transform: scale(1.02);
      }
    }
  }

  .about-content {
    padding: 20px 0;
  }

  .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.3;
  }

  .text-content {
    font-size: 16px;
    color: var(--third-color);
    line-height: 1.8;
  }

  .section-icon {
    width: 60px;
    height: 60px;
    background: rgba(254, 0, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      font-size: 28px;
      color: var(--second-color);
    }
  }

  .values-list {
    .value-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px;
      background: rgba(241, 248, 255, 0.3);
      border-radius: 12px;
      border-left: 3px solid var(--second-color);
      transition: all 0.3s ease;

      &:hover {
        background: var(--white-color);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        transform: translateX(5px);
      }

      .value-icon {
        font-size: 24px;
        color: var(--second-color);
        margin-top: 4px;
        flex-shrink: 0;
      }

      .value-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--main-color);
        margin-bottom: 6px;
      }

      .value-text {
        font-size: 14px;
        color: var(--third-color);
        line-height: 1.6;
      }
    }
  }
}

/* ================================
   SERVICES
================================ */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
      circle,
      rgba(254, 0, 43, 0.03) 0%,
      transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
  }

  .service-card-item {
    background: var(--white-color);
    border-radius: 50px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;

    /* Animated Background Gradient */
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(254, 0, 43, 0.05) 0%,
        rgba(0, 24, 95, 0.05) 100%
      );
      transition: left 0.6s ease;
      z-index: 0;
    }

    /* Top Border Animation */
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--background-btn);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
      z-index: 2;
    }

    &:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 20px 50px rgba(254, 0, 43, 0.2);
      border-color: var(--second-color);

      .service-icon-wrapper {
        transform: scale(1.15);
        background: var(--background-btn);
        box-shadow: 0 10px 30px rgba(254, 0, 43, 0.3);

        i {
          color: var(--second-color) !important;
          transform: scale(1.1);
        }
      }

      .service-number {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      .service-link {
        background: var(--background-btn);
        color: var(--white-color);
        padding-right: 35px;

        i {
          transform: translateX(8px);
        }
      }
    }

    .service-card-header {
      position: relative;
      padding: 35px 30px 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      z-index: 1;

      .service-icon-wrapper {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
          135deg,
          rgba(254, 0, 43, 0.12),
          rgba(254, 0, 43, 0.06)
        );
        border-radius: 24px;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.2),
            transparent
          );
          opacity: 0;
          transition: opacity 0.5s ease;
        }

        &:hover::before {
          opacity: 1;
        }

        i {
          font-size: 40px;
          color: var(--second-color);
          transition: all 0.5s ease;
          z-index: 1;
          position: relative;
        }
      }

      .service-number {
        font-size: 72px;
        font-weight: 800;
        color: rgba(254, 0, 43, 0.08);
        line-height: 1;
        opacity: 0.5;
        transform: translateY(-10px) scale(0.9);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: absolute;
        top: 20px;
        right: 30px;
      }
    }

    .service-card-body {
      padding: 0 30px 25px;
      flex: 1;
      z-index: 1;
      position: relative;

      .service-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--main-color);
        margin-bottom: 18px;
        line-height: 1.3;
        background: linear-gradient(
          135deg,
          var(--main-color) 0%,
          rgba(0, 24, 95, 0.8) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.3s ease;
      }

      .service-description {
        color: var(--third-color);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 28px;
        transition: color 0.3s ease;
      }

      .service-list {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
          display: flex;
          align-items: flex-start;
          gap: 14px;
          padding: 12px 0;
          color: var(--main-color);
          font-size: 15px;
          font-weight: 500;
          transition: all 0.4s ease;
          position: relative;

          .list-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;

            i {
              color: var(--second-color);
              font-size: 16px;
              transition: all 0.3s ease;
            }
          }

          .list-text {
            flex: 1;
            line-height: 1.6;
          }

          &:hover {
            padding-left: 8px;
            color: var(--second-color);

            .list-icon {
              transform: scale(1.2) rotate(5deg);

              i {
                transform: scale(1.2);
              }
            }
          }

          &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 2px;
            background: var(--second-color);
            transition: width 0.3s ease;
            transform: translateY(-50%);
          }

          &:hover::before {
            width: 4px;
          }
        }
      }
    }

    .service-card-footer {
      padding: 25px 30px 35px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      z-index: 1;
      position: relative;

      .service-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--main-color);
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        padding: 12px 25px;
        border-radius: 50px;
        background: rgba(254, 0, 43, 0.08);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          inset: 0;
          background: var(--background-btn);
          opacity: 0;
          transition: opacity 0.4s ease;
        }

        i {
          transition: transform 0.4s ease;
          position: relative;
          z-index: 1;
        }

        span {
          position: relative;
          z-index: 1;
        }

        &:hover {
          color: var(--white-color);
          box-shadow: 0 8px 25px rgba(254, 0, 43, 0.3);

          &::before {
            opacity: 1;
          }

          i {
            transform: translateX(8px);
          }
        }
      }
    }
  }
}

/* ================================
   SERVICE DETAILS PAGE STYLES
================================ */

.service-details-page {
  background: rgba(241, 248, 255, 0.2);
  padding: 40px 0;

  .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(254, 0, 43, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    i {
      font-size: 28px;
      color: var(--second-color);
    }
  }

  .service-image {
    img {
      border: 1px solid rgba(137, 152, 177, 0.15);
    }
  }

  .content-section {
    background: var(--white-color);
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(137, 152, 177, 0.1);
  }

  .section-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 24, 95, 0.1);
    margin-bottom: 24px;
  }

  .text-content {
    font-size: 16px;
    color: var(--third-color);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .list {
    .list-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(137, 152, 177, 0.1);

      &:last-child {
        border-bottom: none;
      }

      .list-icon {
        color: var(--second-color);
        font-size: 18px;
        margin-top: 4px;
        flex-shrink: 0;
      }

      .list-title {
        font-size: 18px;
        color: var(--main-color);
        display: block;
        margin-bottom: 4px;
      }

      .list-desc {
        font-size: 14px;
        color: var(--third-color);
      }
    }
  }

  .feature {
    padding: 20px;
    background: rgba(241, 248, 255, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--second-color);
    height: 100%;

    .feature-icon {
      font-size: 24px;
      color: var(--second-color);
      margin-bottom: 12px;
      display: block;
    }

    .feature-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--main-color);
      margin-bottom: 8px;
    }

    .feature-text {
      font-size: 14px;
      color: var(--third-color);
      line-height: 1.6;
      margin: 0;
    }
  }

  .specs {
    .spec-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(137, 152, 177, 0.1);

      &:last-child {
        border-bottom: none;
      }

      .spec-label {
        font-size: 15px;
        color: var(--main-color);
        font-weight: 600;
        display: flex;
        align-items: center;

        i {
          color: var(--second-color);
        }
      }

      .spec-value {
        font-size: 15px;
        color: var(--third-color);
        text-align: right;
      }
    }
  }

  .sidebar {
    position: sticky;
    top: 100px;
  }

  .sidebar-box {
    background: var(--white-color);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(137, 152, 177, 0.1);
    margin-bottom: 20px;

    .sidebar-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--main-color);
    }

    .sidebar-text {
      font-size: 14px;
      color: var(--third-color);
      line-height: 1.6;
    }
  }

  .info {
    .info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(137, 152, 177, 0.1);

      &:last-child {
        border-bottom: none;
      }

      .info-label {
        font-size: 14px;
        color: var(--third-color);
        display: flex;
        align-items: center;

        i {
          color: var(--second-color);
        }
      }

      .info-value {
        font-size: 14px;
        color: var(--third-color);
        font-weight: 500;
        text-align: right;
      }
    }
  }

  .related {
    .related-item {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: rgba(241, 248, 255, 0.3);
      border-radius: 8px;
      margin-bottom: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid transparent;

      &:hover {
        background: var(--white-color);
        border-color: var(--second-color);
        transform: translateX(5px);

        i:last-child {
          color: var(--second-color);
        }
      }

      i:first-child {
        color: var(--second-color);
        font-size: 16px;
      }

      span {
        flex: 1;
        font-size: 15px;
        color: var(--main-color);
        font-weight: 500;
      }

      i:last-child {
        color: var(--third-color);
        font-size: 12px;
        transition: all 0.3s ease;
      }
    }
  }

  .cta {
    background: rgba(241, 248, 255, 0.3);
    padding: 40px 0;
  }

  .cta-box {
    background: var(--white-color);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(137, 152, 177, 0.1);

    .cta-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--main-color);
    }

    .cta-text {
      font-size: 15px;
      color: var(--third-color);
    }
  }
}
/* ================================
   REVIEWS SECTION
================================ */
.reviews-section {
  position: relative;

  .review-card {
    background-color: transparent !important;

    padding: 0;
    height: 100%;

    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      transform: translateY(-10px);
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50px;
    }
  }
}

/* ================================
   BLOGS
================================ */
.blogs-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  .blog-card {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.9)
    );
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;

    &:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 20px 50px rgba(254, 0, 43, 0.25);
      border-color: var(--second-color);

      .image-wrapper img {
        transform: scale(1.1);
      }
    }

    .image-wrapper {
      overflow: hidden;
      position: relative;
      height: 250px;

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(254, 0, 43, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      &:hover::after {
        opacity: 1;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
    }

    .card-body {
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;

      h5 {
        color: var(--main-color);
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.4;
        transition: color 0.3s ease;
      }

      p {
        font-size: 15px;
        color: var(--third-color);
        line-height: 1.8;
        margin-bottom: 20px;
        flex: 1;
      }

      .btn-send {
        margin-top: auto;
      }
    }

    &:hover .card-body h5 {
      color: var(--second-color);
    }
  }
}

/* ================================
   BLOG DETAILS PAGE STYLES
================================ */

.blog-details-page {
  background: rgba(241, 248, 255, 0.2);
  padding: 40px 0;

  .blog-image {
    img {
      border: 1px solid rgba(137, 152, 177, 0.15);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      height: 500px;
      object-fit: cover;
    }
  }

  .blog-meta {
    .blog-date,
    .blog-category,
    .blog-author {
      font-size: 14px;
      color: var(--third-color);
      display: flex;
      align-items: center;

      i {
        color: var(--second-color);
        margin-right: 8px;
      }
    }
  }

  .blog-content {
    .content-section {
      background: var(--white-color);
      padding: 32px;
      border-radius: 30px;
      border: 1px solid rgba(137, 152, 177, 0.1);
      margin-bottom: 24px;
    }

    .section-heading {
      font-size: 24px;
      font-weight: 700;
      color: var(--main-color);
      margin-bottom: 16px;
    }

    .text-content {
      font-size: 16px;
      color: var(--third-color);
      line-height: 1.8;
    }

    .blog-list {
      list-style: none;
      padding: 0;
      margin: 0;

      li {
        padding: 12px 0;
        padding-left: 28px;
        position: relative;
        color: var(--third-color);
        font-size: 15px;
        line-height: 1.7;

        &::before {
          content: "\f00c";
          font-family: "Font Awesome 6 Free";
          font-weight: 900;
          position: absolute;
          left: 0;
          color: var(--second-color);
        }

        &:not(:last-child) {
          border-bottom: 1px solid rgba(137, 152, 177, 0.1);
        }
      }
    }
  }

  .sidebar {
    position: sticky;
    top: 100px;

    .sidebar-box {
      background: var(--white-color);
      padding: 24px;
      border-radius: 12px;
      border: 1px solid rgba(137, 152, 177, 0.1);
      margin-bottom: 20px;

      .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--main-color);
      }

      .recent-posts {
        .recent-post-item {
          display: flex;
          gap: 12px;
          padding: 12px 0;
          text-decoration: none;
          border-bottom: 1px solid rgba(137, 152, 177, 0.1);
          transition: all 0.3s ease;

          &:last-child {
            border-bottom: none;
          }

          &:hover {
            transform: translateX(5px);

            .recent-post-title {
              color: var(--second-color);
            }
          }

          .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;

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

          .recent-post-content {
            flex: 1;

            .recent-post-title {
              font-size: 14px;
              font-weight: 600;
              color: var(--main-color);
              margin-bottom: 4px;
              line-height: 1.4;
              transition: color 0.3s ease;
            }

            .recent-post-date {
              font-size: 12px;
              color: var(--third-color);
            }
          }
        }
      }

      .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        .tag-item {
          display: inline-block;
          padding: 6px 14px;
          background: rgba(241, 248, 255, 0.5);
          border-radius: 20px;
          font-size: 12px;
          color: var(--main-color);
          font-weight: 500;
          transition: all 0.3s ease;
          border: 1px solid transparent;
          cursor: pointer;

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

      .contact-form-sidebar {
        .form-control {
          background: rgba(241, 248, 255, 0.3);
          border: 1px solid rgba(137, 152, 177, 0.2);
          border-radius: 8px;
          padding: 12px 16px;
          font-size: 14px;
          color: var(--main-color);
          transition: all 0.3s ease;

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

          &:focus {
            background: var(--white-color);
            border-color: var(--second-color);
            box-shadow: 0 0 0 3px rgba(254, 0, 43, 0.1);
            outline: none;
          }
        }

        textarea.form-control {
          resize: vertical;
          min-height: 100px;
        }

        .btn-send {
          padding: 12px 24px;
          font-size: 14px;
        }
      }
    }
  }
}
/* ================================
   CONTACT US
================================ */
.contact-section {
  position: relative;

  overflow: hidden;

  .contact-info-card {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 20px 20px;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    &:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: var(--second-color);

      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 100%
      );

      .contact-icon-wrapper {
        background: var(--background-btn);
        box-shadow: 0 15px 40px rgba(254, 0, 43, 0.5);

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

    .contact-icon-wrapper {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(
        135deg,
        rgba(254, 0, 43, 0.1) 0%,
        rgba(254, 0, 43, 0.05) 100%
      );
      border-radius: 50px;
      margin: 0 auto 30px;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 3px solid rgba(254, 0, 43, 0.1);

      i {
        font-size: 30px;
        color: var(--second-color);
        transition: all 0.5s ease;
      }
    }

    .contact-title {
      font-size: 26px;
      font-weight: 800;
      color: var(--main-color);
      text-align: center;
      margin-bottom: 30px;
      background: linear-gradient(
        135deg,
        var(--main-color) 0%,
        rgba(0, 24, 95, 0.8) 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 18px;

      .contact-link {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--main-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 20px;
        border-radius: 16px;
        background: linear-gradient(
          135deg,
          rgba(241, 248, 255, 0.8) 0%,
          rgba(241, 248, 255, 0.5) 100%
        );
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(254, 0, 43, 0.1);

        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          height: 100%;
          background: var(--background-btn);
          transform: scaleY(0);
          transition: transform 0.4s ease;
          transform-origin: bottom;
        }

        i {
          font-size: 16px;
          color: var(--second-color);
          transition: all 0.3s ease;
          flex-shrink: 0;
        }

        span {
          line-height: 1.6;
          word-break: break-word;
        }

        &:hover {
          background: linear-gradient(
            135deg,
            var(--background-btn) 0%,
            rgba(254, 0, 43, 0.9) 100%
          );
          color: var(--second-color);
          padding-left: 25px;
          transform: translateX(8px);
          border-color: var(--second-color);
          box-shadow: 0 8px 25px rgba(254, 0, 43, 0.3);

          &::before {
            transform: scaleY(1);
            transform-origin: top;
          }

          i {
            transform: scale(1.8);
            color: var(--second-color);
          }
        }

        &.address-link {
          align-items: flex-start;
          line-height: 1.7;

          i {
            margin-top: 8px;
          }
        }
      }
    }
  }

  .contact-form-wrapper {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );

    border-radius: 50px;
    padding: 20px 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    height: 100%;

    .form-title {
      color: var(--main-color);
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 40px;
    }

    .contact-form {
      background: transparent !important;

      .form-control {
        background: linear-gradient(
          135deg,
          rgba(241, 248, 255, 0.9) 0%,
          rgba(241, 248, 255, 0.7) 100%
        );
        border: 2px solid rgba(254, 0, 43, 0.1);
        border-radius: 16px;
        padding: 16px 22px;
        color: var(--main-color);
        font-size: 16px;
        font-weight: 500;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

        &::placeholder {
          color: rgba(0, 24, 95, 0.5);
          font-weight: 400;
        }

        &:focus {
          background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(241, 248, 255, 0.9) 100%
          );
          border-color: var(--second-color);
          box-shadow: 0 0 0 5px rgba(254, 0, 43, 0.15),
            0 8px 25px rgba(254, 0, 43, 0.2);
          color: var(--main-color);
          outline: none;
          transform: translateY(-2px);
        }

        &:hover {
          border-color: rgba(254, 0, 43, 0.3);
          transform: translateY(-1px);
        }
      }

      textarea.form-control {
        resize: vertical;
        min-height: 140px;
      }
    }
  }

  .map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }

    .map-iframe {
      width: 100%;
      height: 100%;
      min-height: 550px;
      border: 0;
      border-radius: 50px;
      filter: grayscale(0.1) brightness(0.98);
      transition: all 0.4s ease;
    }

    &:hover .map-iframe {
      filter: grayscale(0) brightness(1);
    }
  }

  .contact-cards {
    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;
        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);
      }
    }
  }
}

/* ================================
   FOOTER
================================ */
footer {
  background-color: var(--main-color);

  .footer-logo {
    filter: brightness(0) invert(1);
  }

  .footer-title {
    color: var(--white-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;
    background: var(--fourth-color);
    border-radius: 50px;
    width: fit-content;

    a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--second-color);
      color: var(--white-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      &:hover {
        background: var(--second-color);
        color: var(--white-color);
        transform: scale(1.1);
      }
    }
  }

  .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);
      }
    }
  }
}

/* ================================
   GALLERY STYLES
================================ */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;

  &:hover {
    transform: translateY(-5px);
  }
}

.gallery-image {
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  background: rgba(0, 24, 95, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ================================
   VIDEO STYLES
================================ */
.video-item {
  cursor: pointer;
  transition: transform 0.3s ease;

  &:hover {
    transform: translateY(-5px);
  }
}

.video-thumbnail {
  height: 250px;
  object-fit: cover;
}

.video-overlay {
  /* background: rgba(0, 0, 0, 0.1); */
  transition: background 0.3s ease;
}

.video-item:hover .video-overlay {
  background: rgba(0, 24, 95, 0.2);
}

.play-button {
  width: 70px;
  height: 70px;
  background: var(--second-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

  i {
    font-size: 24px;
    margin-left: 5px;
  }
}

.video-item:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(254, 0, 43, 0.4);
}

.video-info {
  background: var(--white-color);
}

/* ================================
   VALUE CARD
================================ */
.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
}

/* ================================
   MISSION VISION CARD
================================ */
.mission-vision-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  }
}

/* ================================
   CONTACT PAGE LARGE FORM STYLES
================================ */

.contact-form-large {
  background: var(--white-color);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(137, 152, 177, 0.1);
  width: 100%;
  max-width: 100%;

  .form-title-large {
    color: var(--main-color);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }

  .contact-form {
    .form-control {
      background: rgba(241, 248, 255, 0.3);
      border: 1px solid rgba(137, 152, 177, 0.2);
      border-radius: 12px;
      padding: 14px 20px;
      color: var(--main-color);
      font-size: 16px;
      transition: all 0.3s ease;

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

      &:focus {
        background: var(--white-color);
        border-color: var(--second-color);
        box-shadow: 0 0 0 3px rgba(254, 0, 43, 0.1);
        outline: none;
      }
    }

    textarea.form-control {
      resize: vertical;
      min-height: 200px;
      height: 100%;
    }
  }

  .form-group-textarea {
    height: 100%;
    display: flex;
    align-items: stretch;

    textarea {
      height: 100%;
      min-height: 200px;
    }
  }
}

.map-wrapper-large {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(137, 152, 177, 0.1);
  background: var(--white-color);

  .map-iframe-large {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
}
