:root {
  /* --main-color: rgb(71 46 202); */
  --main-color: #58a3da;
  --bg: #f2f2f2;
  --second-color: #636262;
  --section-header-font: "Playwrite AU VIC Guides", serif;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
* {
font-family: "Cairo", sans-serif;}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
/* ====================== section header ==================== */
.section-header {
}
.section-header h3 {
  color: var(--main-color);
  position: relative;
  font-family: var(--section-header-font);
}
.section-header h3::after {
  content: "";
  height: 110%;
  height: 30px;
  background-color: #ff6600;
  /* position: absolute;
  bottom: 0px;
  right: 0px; */
}

.controls{
  position: fixed;
  bottom: 50px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10000;
}
 .controls .cart svg,.cart i {
  font-size: 30px;
  color: rgb(92, 92, 141);
}
.controls .cart .orders-num {
  width: 20px;
  height: 20px;
  font-size: 14px;
  background-color: rgb(247 146 41);
  top: -10px;
  right: -8px;
}
/* ========================= the nav style ===================== */
nav {
      position: fixed !important;
    top: 0px;
    left: 0px;
    z-index: 4334;
    width: 100%;
  background-color: var(--bg);
}
nav .logo {
  
}
nav .logo img {
  width: 70px;
}
.links {
  color: var(--main-color);
  font-size: 18px;
}
.lang {
  color: #06635e !important;
}
nav .nav-content {
  transition: .3s;
}

@media (max-width: 992px) {
  nav .nav-content {
    background-color: var(--bg);
    position: absolute;
    top: calc(100% + 2px);
    left: 0px;
    width: 100%;
    z-index: 30;
    overflow: hidden;
  }
  nav .nav-content .links {
    width: 100%;
  }
}

.helper{
  height: 250px !important;
}
.controls .cart {
  padding: 16px;
  border-radius: 50%;
  background-color: #9eabb1;
}
 .controls .cart svg,.cart i {
  font-size: 30px;
  color: rgb(255, 255, 255);
}
 .controls .cart .orders-num {
  width: 20px;
  height: 20px;
  font-size: 14px;
  background-color: rgb(247 146 41);
  top: -10px;
  right: -8px;
}
/* ================ slider ====================== */
.slider {
  height: calc(100vh - 200px);
  min-height: 500px;
}
.slider .previous,
.slider .next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.slider .previous:hover,
.slider .next:hover {
  opacity: 1;
}
/* ================= categraies =================== */
.categraies {
}

.categraies img {
  width: 180px;
  height: 180px;
  cursor: pointer;
  transition: 0.3s;
}
.categraies img:hover {
  transform: scale(1.1);
}
.categraies .category-title {
  color: var(--main-color);
}
@media (min-width: 768px) {
  .categraies .container .large-screen {
    gap: 20px;
  }
  .categraies .container .large-screen div {
    flex-basis: calc((100% - 80px) / 5);
  }
}
/* ================= All Products ====================*/
.card {
 
}
.card-img-box {
  height: 180px;
  text-align: center;
  line-height: 150px;
}
.card-img-box img {
  display: inline-block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.card .product-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.card .price{
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}
.card .addToCart {
}
.addToCart input {
  outline: none;
  border: 1px solid #ddd;
  width: 55px;
}
/* about */
   /* About Section */
.about {
  background-color: #f8f9fa; /* Light background for contrast */
  direction: rtl;
}

 .section-header h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 2.5rem;
  color: #333;
}

 .section-header p {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
}

.about-image img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-image .image-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 0.5;
}

.about-content {
  font-family: 'Cairo', sans-serif;
  transition: transform 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
}

.about-content h4 {
  font-size: 1.5rem;
  color: #333;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-content ul li {
  font-size: 1rem;
  color: #333;
}

.about-content .btn-primary {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-content .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about .section-header h3 {
    font-size: 2rem;
  }

  .about .section-header p {
    font-size: 0.9rem;
  }

  .about-content {
    padding: 1.5rem;
  }

  .about-content h4 {
    font-size: 1.3rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }
}
/* Contact Section */
.contact {
  background-color: #f8f9fa; /* Light background for contrast */
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.contact .section-header h3 {
  font-size: 2.5rem;
  color: #333;
}

.contact .section-header p {
  font-size: 1.1rem;
}

.contact-form, .contact-info {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover, .contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  border-radius: 0;
  border-bottom: 2px solid #dee2e6;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}

.contact-form .btn-primary {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.contact-info h4 {
  font-size: 1.5rem;
  color: #333;
}

.contact-info ul li {
  font-size: 1rem;
  color: #333;
}

.contact-info .social-icons i {
  transition: color 0.3s ease, transform 0.2s ease;
}

.contact-info .social-icons i:hover {
  color: #0056b3;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact .section-header h3 {
    font-size: 2rem;
  }

  .contact .section-header p {
    font-size: 0.9rem;
  }

  .contact-form, .contact-info {
    padding: 1.5rem;
  }

  .contact-info h4 {
    font-size: 1.3rem;
  }

  .contact-info ul li {
    font-size: 0.9rem;
  }

  .contact-info .social-icons i {
    font-size: 1.5rem;
  }
}
/* ================= sign up && login ================ */
.registration-model {
}
.registration-model form input {
  outline: none;
}
.registration-model form input + span {
  font-size: 12px;
}
/* =============== scroll to top btn ================== */
.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none; 
  z-index: 1000;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top:hover {
  background-color: #0056b3;
}
.scroll-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.scroll-top.hide {
  opacity: 0;
  transform: translateY(20px);
}
/* Footer Styling */
.footer {
  background-color:#472ECA;
  color: white;
  padding: 20px 0;
  text-align: center;
}


.footer-bottom {
  
  color: white;
margin: 0px;
  font-size: 20px;
}
/* plugins */
    /* whats app plugin  */
    .whats-float,.facebook-float,.phone-float{
            position: fixed;
    right: 20px;
 
    width: 50px;
    height: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    cursor: pointer;
    overflow: hidden;
   
    border-radius: 50%;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;
    display: flex
;
    align-items: center;
    justify-content: center;
    }
.whats-float {


    bottom: 200px;
   
    background-color: #25d366;
   
    /* Pulse effect */
    animation: pulse 2s infinite;
}
.facebook-float {


    bottom: 125px;
   
    
    background-color: #3b5998;
   
    /* Pulse effect */
    animation: pulse1 2s infinite;
}
.phone-float {

    bottom: 50px;
   
    background-color: rgb(117 135 144 / 70%);
  

    /* Pulse effect */
    animation: pulse2 2s infinite;
}
.whats-float svg,.facebook-float svg,.phone-float svg {
    font-size: 25px;
    color: white;
    line-height: 50px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;
    font-weight: bolder;
}

/* Hover spin */
.whats-float:hover svg,.facebook-float:hover svg,.phone-float:hover svg {
    transform: rotate(360deg);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 #3b58989a;
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgb(117 135 144 / 30%);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

i:hover, .fa:hover, .fa-solid:hover, .fa-brands:hover {
  color: #1abc9c; /* Change to your brand color */
  transform: scale(1.1); /* Slight zoom effect */
  cursor: pointer;
}

/* Example for WhatsApp icon specifically */
.fa-whatsapp {
  color: #25D366; /* WhatsApp green */
}

.fa-whatsapp:hover {
  color: #128C7E; /* Darker green on hover */
}

/* Example for Facebook */
.fa-facebook {
  color: #1877F2;
}
.fa-facebook:hover {
  color: #0d5cc6;
}

/* Example for X (Twitter) */
.fa-x-twitter, .fa-twitter {
  color: #000;
}
.fa-x-twitter:hover, .fa-twitter:hover {
  color: #555;
}

.fa-instagram {
  color: #E4405F;
}
.fa-instagram:hover {
  color: #C13584;
}

.fa-linkedin-in {
  color: #0077B5;
}
.fa-linkedin-in:hover {
  color: #005582;
}

/* YouTube */
.fa-youtube {
  color: #FF0000;
}
.fa-youtube:hover {
  color: #cc0000;
}
/* Facebook - Regular Icon */
.fa-facebook-f {
    color: #1877F2; /* Facebook blue */
}

.fa-facebook-f:hover {
    color: #0d5cc6; /* Darker blue on hover */
    transform: scale(1.15);
}
/* Telegram */
.fa-telegram-plane {
    color: #0088cc; /* Telegram blue */
}

.fa-telegram-plane:hover {
    color: #006bb3; /* Darker blue on hover */
    transform: scale(1.15);
}
  .share-icons {
  display: flex;
  gap: 0.8rem;
}

.share-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--prime-color-soft-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
}
.share-icons i{
      transition: all 0.3s ease-in-out;

}

  


