
:root {

  --secondary-color: #ffc107;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --font-family: "Cairo", sans-serif;
}
:root {
    --primary-color: #0F4793;
    --primary-dark: #0f045e;
    --primary-light: #b0d0ff;
    --secondary-color: #FF9800;
    --light-bg: #F5F5F5;
    --dark-color: #333333;
    --white: #FFFFFF;
}
/* :root {
    --primary-color: #930f0f;
    --primary-dark: #5e0412;
    --primary-light: #ffb0b0;
    --secondary-color: #FF9800;
    --light-bg: #F5F5F5;
    --dark-color: #333333;
    --white: #FFFFFF;
} */

.bg-success {
  background-color: var(--primary-color) !important;
}
.text-success {
  color: var(--primary-color) !important;
}
.btn-outline-success {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.btn-outline-success:hover {
  color: #fff !important;
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-color) !important;
}
.btn-success {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow-x: hidden; */
}

a , a:hover {
  text-decoration: none;
  color: inherit;
}


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
body {
  scrollbar-width: none;
}

/* IE & Old Edge */
body {
  -ms-overflow-style: none;
}



body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}
.form-check-input:focus {
    
    box-shadow: none !important;
}

/* Top Header */
.top-header {
  font-size: 0.9rem;
}

.top-header .social-icons a {
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--primary-dark) !important;
}

.top-header .social-icons a:hover {
  color: var(--primary-color) !important;
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.search-form {
  width: 50%;
}

.navbar-brand img {
  transition: all 0.3s ease;
  height: 150px;
  width: 250px;
}
@media (max-width:992px) {
  .navbar-brand img {
  transition: all 0.3s ease;
  height: 80px;
  width: 100px;
}
.search-form {
  width: 70%;
}
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  cursor: pointer;
}

/* .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 1rem;
    left: 1rem;
    height: 2px;
    background-color: var(--primary-color);
} */

body > nav.navbar.navbar1.logo-section.navbar-expand-lg.navbar-light.bg-white.sticky-top.shadow-sm.py-0 > div {
   flex-wrap: nowrap !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

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

.dropdown-menu-end[data-bs-popper] {
  right: auto !important;
  left: 0 !important;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-dropdown {
  min-width: 320px;
  padding: 1.5rem;
}

.cart-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.search-form .form-control {
  border-radius: 0 2rem 2rem 0;
  border: 1px solid var(--primary-color);
  border-left: none;
  border-radius: 0 2rem 2rem 0 !important;
}
select {

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

}

.search-form .btn {
  border-radius: 2rem 0 0 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Enhanced Header Styles */
.top-header {
  /* background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  ) !important; */
   background-color: transparent !important;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(68, 68, 69, 0.1);
}

.header-promo {
  background: rgb(71 71 88 / 10%);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

/* Logo Section */
.logo-section {
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
}

.brand-info {
  border-right: 2px solid var(--light-gray);
  padding-right: 20px;
}

/* Mega Menu */
.mega-dropdown .mega-menu {
  right: 0;
  width: 100%;
  min-width: 600px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-top: 10px;
}

.mega-menu .dropdown-header {
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.mega-menu .dropdown-item {
  padding: 0.5rem 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover {
  background-color: rgba(40, 167, 69, 0.1);
  padding-right: 15px;
}
.mega-menu .dropdown-item:hover {
    background-color: rgb(115 159 185 / 44%);
}



.mega-menu-featured .featured-product {
  display: block;
  text-decoration: none;
  color: var(--dark-color);
  transition: transform 0.3s ease;
}

.mega-menu-featured .featured-product:hover {
  transform: translateY(-5px);
}

.mega-menu-featured img {
  height: 100px;
  object-fit: cover;
  border: 2px solid var(--light-gray);
}

/* Enhanced Category Cards with Icons */
.category-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.category-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.category-img i {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.category-card:hover .category-img i {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.category-content {
  border-top: none;
  position: relative;
  z-index: 1;
  background: white;
}

/* Main Menu Enhancement */
.main-menu {
  padding: 0.5rem 0;
}

.main-menu .nav-link {
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  position: relative;
}

/* .main-menu .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.25rem;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
} */
/* 
.main-menu .nav-link:hover::before,
.main-menu .nav-link.active::before {
  width: calc(100% - 2.5rem);
} */

/* Improved Search Form */
.search-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
  border: 2px solid var(--primary-color);
  border-left: none;
  padding-right: 1.5rem;
}

.search-form .btn {
  padding: 0.5rem 1.5rem;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.search-form .btn:hover {
  background: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .logo-section {
    border-bottom: none;
  }

  .brand-info {
    display: none;
  }

  .mega-dropdown .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border: 1px solid var(--light-gray);
  }

  .main-menu .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .main-menu .nav-link::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .top-header .row > div {
    margin-bottom: 0.5rem;
  }

  .header-promo {
    font-size: 0.8rem;
  }

  .category-img {
    height: 150px;
  }

  .category-img i {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .top-header {
    font-size: 0.75rem;
  }

  /* .logo-section img {
    height: 60px;
  } */

  .category-slide {
    padding: 5px;
  }
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1) 0%,
    rgba(255, 193, 7, 0.05) 100%
  ); */
  background: linear-gradient(135deg, rgb(40 83 167 / 10%) 0%, rgb(7 173 255 / 5%) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/pattern.png") repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-image {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}









  .hero-slider img {
  height: 90vh;
  object-fit: cover;
}

.hero-slider .carousel-caption {
  bottom: 30%;
  text-align: right;
  z-index: 2;
}

.hero-slider .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero-slider .carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}



.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #c5c5c54d;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.hero-slider .carousel-control-prev {
  right: 0px;
  left: auto;
}

.hero-slider .carousel-control-next {
  left: 0px;
  right: auto;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 1.8rem;
  height: 1.8rem;
}





/* Features */
.feature-card {
  background: white;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
}




/* features start */
.features_item {
    background: #D9F5F3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: 25px;
    position: relative;
    margin-right: 45px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.features_item .icon {
    background: #00BBAE;
    width: 90px;
    height: 90px;
    padding: 10px;
    position: absolute;
    right: -45px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.features_item .text {
    height: 130px;
    width: 100%;
    padding: 20px 45px 20px 15px;
}

.features_item .text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}


.features_item.purple {
    background: #ffcdc8;
}

.features_item.purple .icon {
    background: #db1010;
}

.features_item.orange {
    background: #EAF9E8;
}

.features_item.orange .icon {
    background: #71D863;
}

.features_item.green {
    background: #DCF6FB;
}

.features_item.green .icon {
    background: #16C4E3;
}

/* features end */


/* About Section */
.about-section {
  position: relative;
  /* overflow: hidden; */
  padding-block: 20px;
  color: #fff;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("../img/slider-banner (1).jpg");

  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}



.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 1rem;
  z-index: -1;
}

.about-image img {
  transform: scale(1);
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Why Choose Section */
.choose-card {
  background: white;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(40, 167, 69, 0.1); */
  background: rgb(40 86 167 / 10%);
  border-radius: 50%;
}

/* Category Grid Fix */
.col-lg-2-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Category Cards Enhancements */
.category-content {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Categories Slider */
.categories-slider {
  position: relative;
  padding: 0 50px;
}



.category-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.category-content {
  position: relative;
  z-index: 1;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.owl-carousel .owl-stage {
  padding-block: 20px !important;
}

.carousel-description {
  height: 40px;
}


.slider-prev,
.slider-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--primary-color);
}

/* Responsive Design for Slider */
@media (max-width: 992px) {
  .mega-dropdown .mega-menu {
  right: 0;
  width: 100%;
  min-width: 100px;

}
}
@media (max-width: 768px) {
  .categories-slider {
    padding: 0 40px;
  }

  .category-img {
    height: 180px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .categories-slider {
    padding: 0 30px;
  }

  .category-img {
    height: 150px;
  }

  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  /* display: inline-block; */
  text-align: center;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
} */

/* Categories */
.category-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-img {
  height: 200px;
  overflow: hidden;
}

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

.category-card:hover .category-img img {
  transform: scale(1.1);
}

/* .category */


      /* category 2 start */
      .category_2 .category_item {
        background: none;
        border: none;
        padding: 0;
        transition: all linear 0.3s;
      }

      .category_2 .category_item .img {
        margin: 0 auto 20px;
        width: 170px;
        height: 170px;
        background: #e2f2ffa2;
        /*
	background: #EE7D19;
	background: linear-gradient( to bottom ,#FBE157 ,#EE7D19);*/
        padding: 40px;
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -webkit-border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -moz-border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -ms-border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        -o-border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;

        display: grid;
        align-items: center;
        justify-content: center;
      }

      .category_2 .category_item .img img {
        /*
filter: brightness(100) invert(1);*/
        width: 80px !important;
        margin: 0 auto;
        height: auto !important;
      }

      .category_2 .category_item:hover .img {
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
      }

      .category_2 .category_item h3 {
        font-size: 17px;
      }

      /* category 2 end */
  

    
      .category_2 {
        overflow: hidden;
      }

      .category_2 .category-slide {
        padding: 15px;
      }

      .category_2 .category_item {
        text-align: center;
        text-decoration: none;
        color: #000;
        display: block;
      }

      .category_2 .category_item .img {
        width: 170px;
        height: 170px;
        margin: 0 auto 15px;
        background: #e2f2ffa2;
        padding: 35px;
        display: grid;
        place-items: center;
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transition: 0.3s;
      }

      .category_2 .category_item img {
        width: 80px;
      }

      .category_2 .category_item:hover .img {
        border-radius: 50%;
        /*background: linear-gradient(to bottom, #FBE157, #EE7D19);*/
        /*background: linear-gradient(to bottom, #65fb57, #06551b);*/
        /*background: linear-gradient(to bottom, #fc3a3a, #5e0404);*/
        /*background: linear-gradient(to bottom, #57b7fb, #04165e);*/
      }
      .category_2 .category_item:hover .img1 {
        background: linear-gradient(to bottom, #57b7fb, #04165e);
      }
      .category_2 .category_item:hover .img2 {
        background: linear-gradient(to bottom, #65fb57, #06551b) !important;
      }
      .category_2 .category_item:hover .img3 {
        background: linear-gradient(to bottom, #fbe157, #ee7d19) !important;
      }
      .category_2 .category_item:hover .img4 {
        background: linear-gradient(to bottom, #fc3a3a, #5e0404);
      }

      .category_2 .category_item h3 {
        width: max-content;
        font-size: 20px;
        position: relative;
        right: 100%;
      }
      @media (max-width: 992px) {
        .category_2 .category_item h3 {
          right: 20%;
        }
      }
  

/* Products */
.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.product-badges .badge {
  margin-bottom: 5px;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
}

.product-actions {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-action-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.product-title a:hover {
  color: var(--primary-color) !important;
}

.product-rating {
  color: #ffc107;
}
.product-price {
  height: 65px;
}
.price {
  width: 80px;
}

.current-price {
  font-size: 1.25rem;
}

.old-price {
  font-size: 0.9rem;
}

.add-to-cart {
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background-color: var(--primary-dark) !important;
  transform: scale(1.05);
}
/* videos */

  
      .videos-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9eff5 100%);
      }

      .video-wrapper {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .video-container iframe {
        border-radius: 10px;
      }

      .play-btn-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 10px;
      }

      .video-wrapper:hover .play-btn-overlay {
        opacity: 1;
      }

      .play-btn {
        width: 70px;
        height: 70px;
        background: var(--primary-color);
        text-align: center;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .play-btn:hover {
        transform: scale(1.1);
        background: var(--primary-dark);
      }

      /* قائمة الفيديوهات */
      .video-list {
        border-top: 1px solid #eee;
        padding-top: 15px;
      }

      .video-item {
        padding: 10px;
        border-radius: 8px;
        transition: background 0.3s ease;
      }

      .video-item:hover {
        background: #f8f9fa;
      }

      .video-thumb {
        position: relative;
        width: 120px;
        flex-shrink: 0;
      }

      .video-thumb img {
        width: 100%;
        height: 70px;
        object-fit: cover;
      }

      .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
      }

      .video-info h6 {
        font-weight: 600;
        color: #333;
      }

      /* بطاقات الفيديوهات الإضافية */
      .video-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        height: 100%;
      }

      .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .video-thumbnail {
        height: 200px;
        overflow: hidden;
      }

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

      .video-card:hover .video-thumbnail img {
        transform: scale(1.05);
      }

      .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .video-card:hover .video-overlay {
        opacity: 1;
      }

      .video-duration {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
      }

      .video-card-body {
        background: white;
      }

      .video-title {
        font-weight: 600;
        color: #333;
        min-height: 48px;
      }

      .video-desc {
        min-height: 40px;
      }

      /* تنسيقات للشاشات الصغيرة */
      @media (max-width: 768px) {
        .play-btn {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 50px;
          height: 50px;
          font-size: 18px;
        }

        .video-thumb {
          width: 100px;
        }

        .video-thumb img {
          height: 60px;
        }

        .video-thumbnail {
          height: 180px;
        }
      }

      @media (max-width: 576px) {
        .video-content {
          text-align: center;
        }

        .video-item {
          flex-direction: column;
          text-align: center;
        }

        .video-thumb {
          margin: 0 0 10px 0;
        }
      }
    
/* Testimonials */
.testimonials-section .carousel-inner {
    height: 340px;
    border-radius: 25px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff !important;
}
.testimonial-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4rem;
  color: rgba(40, 97, 167, 0.1);
  font-family: serif;
}

.testimonial-img img {
  border: 3px solid var(--primary-color);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  right: -25px;
  left: auto;
}

.carousel-control-next {
  left: -25px;
  right: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.testimonials-section .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    /* z-index: -1; */
    background:#e8f9fe3a;
}
/* Newsletter */
.newsletter-section {
  /* background: linear-gradient(
    135deg,
    rgb(3 35 10 / 90%) 0%,
    rgba(30, 126, 52, 0.9) 100%
  ); */
  background: linear-gradient(135deg, rgb(4 3 35 / 90%) 0%, rgb(42 102 204 / 90%) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/pattern.png") repeat;
  opacity: 0.1;
}

.newsletter-section .container {
  position: relative;
  z-index: 1;
}

.newsletter-form .form-control {
  border-radius: 0 2rem 2rem 0;
  border: none;
  padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
  border-radius: 2rem 0 0 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.newsletter-form .btn:hover {
  background-color: #343a40;
  border-color: #343a40;
}

/* partners */


  
      .partners-section {
        position: relative;
        padding: 80px 0;
        background: url("../img/partners-bg.jpg") center/cover no-repeat;
      }

      .partners-section .overlay {
        position: absolute;
        inset: 0;
        /* background: linear-gradient(rgba(8, 35, 80, 0.9), rgba(8, 35, 80, 0.9)); */
        background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
      }

      .partners-slider {
        direction: ltr;
      }
      .slick-initialized .slick-slide {
        height: 115px;
        text-align: -webkit-center;
        display: block;
      }

      .partner-logo {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        margin: 0 10px;
      }

      .partner-logo img {
        max-height: 70px;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(0%);
        transition: 0.3s;
      }

      .partner-logo img:hover {
        filter: grayscale(0);
        transform: scale(1.05);
      }
    


/* Footer */
/* .footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #343a40 100%);
} */
.footer {
    /* background: linear-gradient(135deg, #5182a4 0%, #001830 100%); */
    background-color: #040323e6 ;
}

.footer a:hover {
  color: var(--primary-color) !important;
  
}
.footer a:hover i {
  color: #fff !important;
  
}
.footer-about img {
    width: 300px;
    height: 200px;
}

.footer .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.payment-methods i {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-methods i:hover {
  opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }

  .search-form {
    margin-top: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .top-header .d-flex {
    justify-content: center;
    text-align: center;
  }

  .top-header .text-start {
    text-align: center !important;
    margin-top: 0.5rem;
  }

  .hero-section .display-4 {
    font-size: 2.5rem;
  }

  .feature-card {
    margin-bottom: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .whatsapp-button {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  #backToTop {
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-section .display-4 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .product-img {
    height: 200px;
  }

  .testimonial-card {
    padding: 2rem !important;
  }
}


    /* Pagination Green Theme */
.pagination_area .page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination_area .page-link:hover {
    background-color: #e9f2f7;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination_area .page-link.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(40, 123, 167, 0.25);
}
.pagination_area .page-link:focus {
    
    border-color: var(--primary-color) !important;
   
    box-shadow: 0 4px 10px rgba(40, 123, 167, 0.25);
}

.pagination_area .page-link i {
    font-size: 0.9rem;
}

/* Hover effects for arrows */
.pagination_area .page-link:hover i {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
    .pagination_area .page-link {
        padding: 0.4rem 0.8rem;
        margin: 0 2px;
        font-size: 0.9rem;
    }
}


.description {
  height: 100px;
}


