@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --main-color: #3a2678;
  --second-color: #3f6376;
  --black-color: #000000;
  --white-color: #ffffff;
  --third-color: #3893c1;
  --fourth-color: #E8F6FF;
  --background-btn: linear-gradient(
    135deg,
    var(--main-color) 0%,
    #7758d6 60%,
    #8169c7 100%
  );
  --background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    #4c3496 60%,
    #8169c7 100%
  );
  --background-btn-hover: linear-gradient(
    -135deg,
    var(--main-color) 0%,
    #6444c4 60%,
    #7157bf 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;
}

html,
body {
  scroll-behavior: smooth !important;
  font-family: "Open Sans", sans-serif !important;
}
[dir="rtl"] body {
  font-family: "Cairo", 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: 10px 32px;
  border: none;
  border-radius: 0px;
  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;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.3s ease;
    z-index: 0;
  }
  &:hover {
    &::before {
      left: 100%;
    }
    background: var(--background-btn-hover);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);
    border: none;
    i {
      transform: translateX(5px);
    }
  }
}

.btn-more {
  background: transparent;
  color: var(--main-color);

  padding: 10px 0 5px;

  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: justify;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.3s ease;
  }
  &:hover {
    &::before {
      left: 100%;
    }
    i {
      transform: rotate(0deg);
    }
  }
}
.btn-contact {
  background: var(--white-color);
  color: var(--main-color);
  padding: 12px 32px;
  border-radius: 0px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 2px solid transparent;

  i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.3s ease;
    z-index: 0;
  }
  &:hover {
    &::before {
      left: 100%;
    }

    i {
      transform: rotate(0deg);
    }
    background: var(--background-btn-hover);
    color: #fff;
    border: none;
  }
}
.header-section {
  h2 {
    color: var(--main-color);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  p {
    color: #575757;
  }
}

/*  
##################################################
#                  SOCIAL ICONS                  #
##################################################
*/
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;
  z-index: 999;
  a {
    background: var(--background-btn) !important;
    color: var(--white-color);
    padding: 0.8rem;
    border-radius: 0px;
    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: 0px;
  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: 999;
  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(--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                       #
##################################################
*/
.fixed-top {
  background-color: var(--white-color) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ================================
   NAVBAR (SECOND ROW)
================================ */

.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
  /* ================================
   LOGO
================================ */
  .navbar-brand {
    img {
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.05);
    }
  }
  .navbar-toggler {
    box-shadow: none !important;
    border: none !important;
  }
  .nav-item {
    .nav-link {
      color: var(--main-color);
      font-weight: 600;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 90px;
      transition: all 0.3s ease;
      position: relative;
      text-align: center;
      i {
        line-height: 90px;
      }
      &:hover {
        color: var(--third-color);
      }

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

  /* ==========================
   DROPDOWN & MEGA MENU
========================== */

  /* Base Dropdown */
  .dropdown,
  .user-dropdown {
    position: static;
    &:hover .dropdown-menu {
      display: block !important;
    }
  }

  /* Dropdown Menu Base */
  .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: var(--white-color);
    z-index: 999;

    /* Mega Menu Titles */
    .mega-title {
      text-decoration: none;
      color: var(--black-color);
      font-size: 14px;
      transition: all 0.3s ease;

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

  /* User Dropdown Special Case */
  .user-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    padding: 20px 10px;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: var(--white-color);
  }
}

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

/* ================================
   OFFCANVAS (MOBILE)
================================ */
.offcanvas {
  background-color: var(--white-color);
  border-right: 4px solid var(--third-color);

  .btn-close {
    filter: brightness(0) invert(1);
  }

  .offcanvas-body {
    padding-top: 20px;
  }

  .nav-link {
    color: var(--third-color);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;

    transition: all 0.3s ease;
    line-height: 0px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    i {
      line-height: 0 !important;
    }
    &:hover {
      color: var(--third-color);
    }
  }
  /* ================================
   CONTACT BOX (OFFCANVAS)
================================ */
  .list-contact {
    strong,
    span {
      color: var(--main-color) !important;
    }

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

      &:hover {
        color: var(--third-color) !important;
      }
    }
  }
  .mega-menu {
    display: none;
    position: static;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: var(--white-color);
    z-index: 999;

    /* Mega Menu Titles */
    .mega-title {
      text-decoration: none;
      color: var(--black-color);
      font-size: 14px;
      transition: all 0.3s ease;

      &:hover {
        color: var(--third-color);
        padding-left: 6px;
      }
    }
  }
  /* ================================
   SOCIAL ICONS
================================ */
  .header-social {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(139, 115, 85, 0.2);

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--main-color);
      transition: all 0.3s ease;

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

/*  
##################################################
#                     Home                       #
##################################################
*/
/* ================= Hero Base ================= */

.hero {
  position: relative;

  .hero-slider {
    height: calc(100vh - 140px);
    overflow-x: hidden;
    img {
      height: calc(100vh - 140px);
      width: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }
    .swiper-btns {
      background-color: var(--white-color) !important;
      position: absolute;
      display: flex !important;
      width: 105px;
      height: 80px;
      bottom: 0;
      right: 0;
      z-index: 2;

      .swiper-button-next,
      .swiper-button-prev {
        position: static !important;
        width: 50%;
        height: 100%;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        & svg {
          display: none;
        }

        i {
          font-size: 20px;
          color: var(--main-color);
          transition: color 0.3s ease;
        }

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

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

  /* ================= Hero Content ================= */

  .hero-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;

    &.active {
      opacity: 1;
    }

    /* Slogan */
    .hero-slogan {
      display: inline-block;
      margin-bottom: 14px;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--white-color);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    /* Title */
    h1 {
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    /* Paragraph */
    p {
      max-width: 600px;
      color: #f1f1f1;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    /* Button */
    .btn-contact {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1.2s ease;
    }

    /* ===== Active Animations ===== */

    &.active {
      .hero-slogan {
        opacity: 1;
        transform: translateY(0);
      }

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

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

      .btn-contact {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

.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;
    }
    .hero-content {
      position: absolute;
      left: 0;
      bottom: 60px;
      z-index: 6;

      /* Slogan */
      .hero-slogan {
        display: inline-block;
        margin-bottom: 14px;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--white-color);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }

      /* Title */
      h1 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        
        transform: translateY(30px);
        transition: all 0.8s ease;
      }

      /* Paragraph */
      p {
        max-width: 600px;
        color: #f1f1f1;
   
        transform: translateY(30px);
        transition: all 1s ease;
      }

      /* Button */
      .btn-contact {
      
        transform: translateY(30px);
        transition: all 1.2s ease;
      }

      /* ===== Active Animations ===== */

      &.active {
        .hero-slogan {
        
          transform: translateY(0);
        }

        h1 {
   
          transform: translateY(0);
        }

        p {
      
          transform: translateY(0);
        }

        .btn-contact {
        
          transform: translateY(0);
        }
      }
    }
  }
}

.hero-pages {
  .hero-content {
    margin-top: 80px;
  }
  .breadcrumb-item {
    color: var(--white-color);
  }
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
}

/*  
##################################################
#                   Categories                   #
##################################################
*/
.categories-section {
  .category-card {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Product Image Container */
    .category-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 250px;

      img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
      }
    }

    /* Product Content */
    .category-content {
      padding: 25px 0;
      display: flex;
      flex-direction: column;
    }

    .category-title {
      font-size: 18px !important;
      font-weight: 500;
      color: var(--main-color);
      margin-bottom: 5px;
      line-height: 1.4;
      /* min-height: 56px; */
    }

    &:hover {
      transform: translateY(-8px);

      img {
        transform: scale(1.05);
      }
      .btn-more {
        i {
          transform: rotate(0);
        }
      }
    }
  }
  /* ========== Swiper Styles ========== */
  .categoires-swiper {
    padding: 20px 0 60px;
    position: relative;
    .swiper-slide {
      height: auto;
    }
  }
  .swiper-btns {
    display: flex;
    width: 120px;
    height: 55px;
    bottom: 0;
    right: 0;
    z-index: 2;
    gap: 5px;

    .swiper-button-next,
    .swiper-button-prev {
      background: var(--white-color);
      position: static !important;
      border: 1px solid #eee;
      width: 50%;
      height: 100%;
      margin: 0 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      & svg {
        display: none;
      }

      i {
        font-size: 20px;
        color: var(--main-color);
        transition: color 0.3s ease;
      }

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

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

  /* Swiper Pagination */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
  }
}
/*  
##################################################
#                    Product                     #
##################################################
*/
.products-section {
  .container-fluid {
    background: var(--fourth-color);
  }
  .product-card {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Product Image Container */
    .product-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 300px;
      background: linear-gradient(
        135deg,
        #fafafa 0%,
        rgba(77, 52, 150, 0.1) 100%
      );
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    /* Product Badge */
    .product-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--main-color);
      color: var(--white-color);
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
      z-index: 2;
    }

    /* Action Buttons */
    .product-actions {
      position: absolute;
      right: 0px;
      bottom: -25px;
      transform: translateY(-50%) translateX(100px);

      opacity: 0;
      transition: all 0.4s ease;
      z-index: 3;
    }

    .action-btn {
      width: 45px;
      height: 45px;
      background: var(--white-color);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--main-color);
      transition: all 0.3s ease;
      position: relative;
      box-shadow: var(--shadow-md);

      &::before {
        content: attr(data-tooltip);
        position: absolute;
        right: calc(100% + 12px);
        background: var(--background-btn);
        color: var(--white-color);
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
      }

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

        &::before {
          opacity: 1;
        }
      }

      &.favorite:hover,
      &.cart:hover {
        background: var(--background-btn-hover);
        color: var(--white-color);
      }
    }

    /* Product Content */
    .product-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .product-category {
      font-size: 12px;
      color: var(--main-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .product-title {
      font-size: 16px;
      height: 62px;
      font-weight: 500;
      color: var(--main-color);
      margin-bottom: 12px;
      line-height: 30px;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      overflow: hidden;
    }

    /* Product Footer */
    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .product-price {
      display: flex;
      flex-direction: column;
      /* gap: 4px; */
    }

    .price-value {
      font-size: 26px;
      font-weight: 500;
      color: var(--third-color);
    }

    .price-currency {
      font-size: 16px;
      font-weight: 600;
      color: var(--third-color);
    }
    .price-value-discount {
      position: relative;
      color: #999 !important;
      .price-currency {
        color: #999 !important;
      }
    }

    .price-value-discount::after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 100%;
      height: 2px;
      background: var(--second-color);
      transform: translateY(-50%);
    }
    .btn-more {
      opacity: 0;
    }
    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);

      .product-image {
        transform: scale(1.05);
      }

      .product-actions {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
      }
      .btn-more {
        opacity: 1;
      }
    }
  }
  /* ========== Swiper Styles ========== */
  .products-swiper {
    padding: 20px 0 60px;
    position: relative;
    .swiper-slide {
      height: auto;
    }
  }
  .swiper-btns {
    display: flex;
    width: 120px;
    height: 55px;
    bottom: 0;
    right: 0;
    z-index: 2;
    gap: 5px;

    .swiper-button-next,
    .swiper-button-prev {
      background: var(--white-color);
      position: static !important;
      border: 1px solid #eee;
      width: 50%;
      height: 100%;
      margin: 0 !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      & svg {
        display: none;
      }

      i {
        font-size: 20px;
        color: var(--main-color);
        transition: color 0.3s ease;
      }

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

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

  /* Swiper Pagination */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-secondary);
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
  }
}
/*  
##################################################
#              Products Page                     #
##################################################
*/
.products-page {
  background: #f8f9fa;
}

.products-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  max-height: 100vh;
  overflow-y: auto;
}

.filter-widget {
  h5 {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
  }
}

.search-box {
  position: relative;

  input {
    padding-right: 40px;
    border-radius: 0;
    border: 1px solid #dee2e6;

    &:focus {
      border-color: var(--main-color);
      box-shadow: 0 0 0 0.2rem rgba(219, 18, 21, 0.15);
    }
  }

  i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
  }
}

.category-tabs {
  border-bottom: none;
  flex-direction: column;

  .nav-item {
    margin-bottom: 5px;
    width: 100%;
  }

  .category-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;

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

    &:hover {
      background-color: #f8f9fa;
      color: var(--main-color);
      border-left-color: var(--main-color);
    }

    &.active {
      background-color: rgba(219, 18, 21, 0.1);
      color: var(--main-color);
      border-left-color: var(--main-color);
      font-weight: 600;
      border-bottom: none;
    }

    span:first-child {
      flex: 1;
    }

    .count {
      color: #6c757d;
      font-size: 14px;
      font-weight: normal;
      margin-left: 10px;
    }

    &.active .count {
      color: var(--main-color);
      font-weight: 600;
    }
  }
}

.filter-actions {
  margin-top: 20px;

  .btn {
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 600;

    &:hover {
      background-color: var(--main-color);
      color: #fff;
      border-color: var(--main-color);
    }
  }
}

.products-toolbar {
  background: #fff;
  padding: 20px 25px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  .sort-options {
    .sort-tabs {
      border-bottom: none;
      gap: 5px;

      .nav-item {
        margin-bottom: 0;
      }

      .sort-tab {
        padding: 8px 16px;
        color: #6c757d;
        background: transparent;
        border: 1px solid #dee2e6;
        border-radius: 0;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
 
        cursor: pointer;

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

        &:hover {
          background-color: #f8f9fa;
          border-color: var(--main-color);
          color: var(--main-color);
        }

        &.active {
          background-color: var(--main-color);
          color: #fff;
          border-color: var(--main-color);
        }
      }
    }
  }
}

.products-grid {
  .product-card {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Product Image Container */
    .product-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 300px;
      background: linear-gradient(
        135deg,
        #fafafa 0%,
        rgba(77, 52, 150, 0.1) 100%
      );
    }

    .product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    /* Product Badge */
    .product-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--main-color);
      color: var(--white-color);
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
      z-index: 2;
    }

    /* Action Buttons */
    .product-actions {
      position: absolute;
      right: 0px;
      bottom: -25px;
      transform: translateY(-50%) translateX(100px);

      opacity: 0;
      transition: all 0.4s ease;
      z-index: 3;
    }

    .action-btn {
      width: 45px;
      height: 45px;
      background: var(--white-color);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--main-color);
      transition: all 0.3s ease;
      position: relative;
      box-shadow: var(--shadow-md);

      &::before {
        content: attr(data-tooltip);
        position: absolute;
        right: calc(100% + 12px);
        background: var(--background-btn);
        color: var(--white-color);
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
      }

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

        &::before {
          opacity: 1;
        }
      }

      &.favorite:hover,
      &.cart:hover {
        background: var(--background-btn-hover);
        color: var(--white-color);
      }
    }

    /* Product Content */
    .product-content {
      padding: 15px 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .product-title {
      font-size: 16px;
      font-weight: 500;
      color: var(--main-color);
      margin-bottom: 12px;
      line-height: 30px;
      line-clamp: 1;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      overflow: hidden;
    }

    &:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);

      .product-image {
        transform: scale(1.05);
      }

      .product-actions {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
      }
    }
  }
}


/*  
##################################################
#              Product Details Page              #
##################################################
*/
.product-details-page {
  background: #f8f9fa;
}

/* ================= Product Images ================= */
.product-image-main {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;

  a {
    display: block;
    text-decoration: none;
    border: none;
    outline: none;

    &:hover,
    &:focus {
      text-decoration: none;
      border: none;
      outline: none;
    }
  }

  img {
    display: block;
    transition: transform 0.3s ease;
  }

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

.product-thumbnails {
  .thumbnail-item {
    flex: 1;
    max-width: 150px;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;

    a {
      display: block;
      text-decoration: none;
      border: none;
      outline: none;

      &:hover,
      &:focus {
        text-decoration: none;
        border: none;
        outline: none;
      }
    }

    img {
      display: block;
      transition: opacity 0.3s ease;
    }

    &:hover {
      border-color: var(--main-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

      img {
        opacity: 0.8;
      }
    }

    &.active {
      border-color: var(--main-color);
      box-shadow: 0 0 0 3px rgba(219, 18, 21, 0.1);
    }
  }
}

/* ================= Product Info ================= */
.product-info-card {
  background: #fff;
  height: 100%;

  h3 {
    color: var(--main-color);
    font-size: 28px;
    margin-bottom: 20px;
  }

  .product-description {
    line-height: 1.8;
    color: #666;
  }

  .feature-item {
    transition: all 0.3s ease;

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

    i {
      font-size: 18px;
    }
  }
}

/* ================= Tabs ================= */
.product-tabs {
  border-bottom: 2px solid #e9ecef;

  .nav-link {
    color: #666;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 25px;
    border: none;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;

    &:hover {
      color: var(--main-color);
      border-bottom-color: rgba(219, 18, 21, 0.3);
    }

    &.active {
      color: var(--main-color);
      background: transparent;
      border-bottom-color: var(--main-color);
    }
  }
}

/* ================= Tab Content ================= */
.content {
  .card {
    background: #fff;
    border-radius: 0;
  }

  .table {
    margin-bottom: 0;

    td {
      padding: 15px;
      vertical-align: middle;

      &.bg-light {
        background-color: #f8f9fa !important;
        font-weight: 600;
        color: #333;
      }
    }

    tbody tr {
      transition: background-color 0.2s ease;

      &:hover {
        background-color: #f8f9fa;
      }
    }
  }

  .feature-box {
    height: 100%;
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: var(--main-color) !important;
    }

    i {
      min-width: 40px;
    }
  }

  .application-item {
    transition: all 0.3s ease;

    &:hover {
      background-color: #f8f9fa;
      border-color: var(--main-color) !important;
      transform: translateX(5px);
    }

    i {
      min-width: 30px;
    }
  }

  .ratio {
    border-radius: 0;
    overflow: hidden;

    iframe {
      border-radius: 0;
    }
  }
}

/* ================= CTA ================= */
.product-cta {
  .btn-send {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(219, 18, 21, 0.3);
    }
  }
}
/*  
##################################################
#                    About US                    #
##################################################
*/
.about-page {
  position: relative;
  
  /* Image wrapper for shine effect */
  .image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 0;

    &::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
      );
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      animation: shine 3s infinite;
      z-index: 2;
      pointer-events: none;
    }

    img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      transition: transform 0.5s ease;
    }

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


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

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
  }
  .about-content {
    position: relative;
    z-index: 2;
  }

  .about-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;

    &:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }
  }

  .about-title {
    font-size: 48px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
  }

  .about-features-list {
    animation: fadeInUp 0.8s ease 0.4s both;
  }

  .about-feature-item {
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;

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

    &:hover {
      padding-left: 10px;
      transform: translateX(5px);

      &::before {
        width: 8px;
      }

      .feature-icon-wrapper {
        background: var(--primary);
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(219, 18, 21, 0.5);
      }

      .feature-text {
        color: var(--white) !important;
      }
    }
  }

  .feature-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);

    i {
      font-size: 14px;
    }
  }

  .feature-text {
    line-height: 1.6;
    transition: color 0.3s ease;
  }
}

/* ================= Video Box ================= */
.video-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
  }

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

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;

  }
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.video-shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
  z-index: 2;
  pointer-events: none;
}

/* ================= Play Button ================= */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--background-btn);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  animation: pulse-play 2s infinite;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;

  &::before,
  &::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--background-btn);
    z-index: -1;
  }

  &::before {
    opacity: 0.5;
    animation: ripple-play 2s infinite;
  }

  &::after {
    opacity: 0.3;
    animation: ripple-play 2s infinite 0.5s;
  }

  &:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.15), 0 0 40px var(--main);
    animation: none;
    border-color: rgba(255, 255, 255, 0.5);

    &::before,
    &::after {
      animation: none;
    }

    i {
      transform: scale(1.2);
    }
  }

  i {
    position: relative;
    z-index: 2;
    margin-left: 3px;
    transition: transform 0.3s ease;
  }
}

/* ================= Animations ================= */
@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple-play {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ========== Why Choose Cards Hover Animation ========== */
.why-choose-card {
  background: var(--white-color);
  border-radius: 0px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;



  .icon-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
width: 50px;
height: 50px;
    i {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-block;
      position: relative;
      z-index: 2;
    }

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      width: 80px;
      height: 80px;
      background: rgba(59, 38, 120, 0.17);
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 1;
    }
  }

  h5 {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  p {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

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

    border-color: var(--main-color);
    background: linear-gradient(135deg, #ffffff 0%, rgba(219, 18, 21, 0.02) 100%);

 

    .icon-wrapper {
      transform: scale(1.1) ;

     img {
      transform: scale(1.1);
      filter: brightness(0) saturate(100%) invert(17%) sepia(82%) saturate(3030%) hue-rotate(271deg) brightness(90%) contrast(101%);
     }

      &::after {
        transform: translate(-50%, -50%) scale(1);
        background: rgba(59, 38, 120, 0.17);
      }
    }

    h5 {
      color: var(--main-color);
      transform: translateY(-2px);
    }

    p {
      color: #555;
    }
  }

}

/*  
##################################################
#                   Contact US                   #
##################################################
*/
.contact-page{
  .container-fluid {
    background: var(--white-color) !important;
  }
}
.contact-section,.contact-page {
  .container-fluid {
    background: var(--fourth-color);
  }

  .contact-badge {
    color: var(--main-color) !important;
    padding: 8px 20px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--main-color);
    background: var(--white-color);
    transition: all 0.3s ease;
  }

  .contact-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--main-color) !important;
    font-weight: 700;
  }

  .contact-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    &:hover {
      transform: translateY(-8px);

      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    a {
      text-decoration: none !important;
      color: var(--main-color);
      &:hover {
        color: var(--third-color) !important;
      }
    }
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    background: var(--background-btn);
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.4s ease;

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

  .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;

    &:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
    }
  }

  .contact-form {
    .form-control {
      &:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--background-btn);
        color: var(--white-color);
        box-shadow: 0 0 0 0.2rem rgba(59, 38, 120, 0.5);
        outline: none;
      }

      &::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }
    }

    .form-label {
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      opacity: 0.95;
    }

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

/*  
##################################################
#                    Blogs                       #
##################################################
*/
.blogs-section {
  .blog-card {
    h5 {
      font-size: 18px !important;
      line-height: 20px;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      overflow: hidden;
    }
    .badge {
      background: var(--background-btn);
    }
  }
}

/*
##################################################
#                  Blog Details                  #
##################################################
*/
.blog-details-section {
  background: #f8f9fa;
}

.blog-details-card {
  background: #fff;
  border-radius: 0;
  
  .blog-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
    
    h1 {
      font-size: 32px;
      line-height: 1.3;
      color: var(--main-color);
    }
    
    .badge {
      background: var(--background-btn);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
    }
    
    .text-muted {
      font-size: 14px;
      
      i {
        color: var(--main-color);
      }
    }
  }
  
  .blog-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    
    img {
      transition: transform 0.5s ease;
      
      &:hover {
        transform: scale(1.05);
      }
    }
  }
  
  .blog-content {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    
    h3 {
      color: var(--main-color);
      font-size: 24px;
      font-weight: 700;
      margin-top: 30px;
      margin-bottom: 15px;
    }
    
    p {
      margin-bottom: 20px;
    }
    
    ul {
      padding-left: 20px;
      
      li {
        margin-bottom: 10px;
        line-height: 1.8;
        
        strong {
          color: var(--main-color);
        }
      }
    }
    
    .lead {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.7;
    }
  }
  
  .feature-box {
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 0;
    
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: var(--main-color) !important;
    }
    
    i {
      color: var(--main-color);
    }
    
    h5 {
      color: var(--main-color);
      font-size: 18px;
    }
  }
  
  .blog-footer {
    .badge {
      transition: all 0.3s ease;
      
      &:hover {
        background: var(--main-color) !important;
        color: #fff !important;
        transform: translateY(-2px);
      }
    }
    
    .btn {
      transition: all 0.3s ease;
      
      &:hover {
        transform: scale(1.1);
      }
    }
  }
}

/* Blog Sidebar */
.blog-sidebar-widget {
  background: #fff;
  border-radius: 0;
  
  h5 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
  }
  
  .search-box {
    position: relative;
    
    input {
      padding-right: 45px;
      border-radius: 0;
      border: 1px solid #dee2e6;
      
      &:focus {
        border-color: var(--main-color);
        box-shadow: 0 0 0 0.2rem rgba(219, 18, 21, 0.15);
      }
    }
    
    i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
      pointer-events: none;
    }
  }
  
  .list-unstyled {
    li {
      transition: all 0.3s ease;
      
      a {
        color: #555;
        transition: all 0.3s ease;
        
        &:hover {
          color: var(--main-color);
          padding-left: 10px;
        }
      }
      
      .badge {
        background: #f8f9fa;
        color: #666;
        font-weight: 600;
      }
      
      &:hover .badge {
        background: var(--main-color);
        color: #fff;
      }
    }
  }
  
  .recent-post-item {
    transition: all 0.3s ease;
    
    &:hover {
      transform: translateX(5px);
      
      h6 {
        color: var(--main-color);
      }
    }
    
    a {
      text-decoration: none;
      
      h6 {
        color: #333;
        font-size: 15px;
        transition: all 0.3s ease;
        line-height: 1.4;
      }
      
      small {
        font-size: 13px;
      }
    }
  }
  
  .badge {
    transition: all 0.3s ease;
    font-weight: 500;
    
    &:hover {
      background: var(--main-color) !important;
      color: #fff !important;
      transform: translateY(-2px);
    }
  }
}

/* Related Blogs */
.related-blogs {
  h3 {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 700;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .blog-details-card {
    .blog-header h1 {
      font-size: 26px;
    }
    
    .blog-content h3 {
      font-size: 22px;
    }
  }
}

@media (max-width: 768px) {
  .blog-details-card {
    padding: 20px !important;
    
    .blog-header h1 {
      font-size: 22px;
    }
    
    .blog-content {
      font-size: 15px;
      
      h3 {
        font-size: 20px;
      }
    }
    
    .blog-featured-image img {
      height: 300px !important;
    }
  }
  
  .blog-sidebar-widget {
    margin-bottom: 20px;
  }
}
/* .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 {
  background: var(--background);
  .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;

    &:hover {
      color: var(--third-color);
      padding-left: 6px;
    }
  }
  .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-divider {
    border-color: rgba(255, 255, 255, 0.4);
    margin: 40px 0 20px;
  }
  .copyright {
    p {
      margin: 0;
      font-size: 18px;
      color: var(--white-color);
    }

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

      &:hover {
        color: var(--third-color);
      }
    }
  }
  .footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;

    a {
      width: 38px;
      height: 38px;
      border-radius: 0;
      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);
      }
    }
  }
}