
/*================== GENERAL =====================*/


:root{
    --white: #fff;
    --text-white: #dbe7f3;
    --light: #f5f7fb;
    --text-color: #555;
    --text-dark: #2B2D42;
    --dark: #0F172B;
    --light-blue: #0d6efd;
    --dark-blue: #0a58ca;
    --red: #ef233c;
    --green: #00E77F;
    --primary: #fd650d;
    --secondary: #1f1d1d;
    --bg-dark: #1a1a1a;
    --bg-darker: #111;

    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);

    /* ===== Theme tokens ===== */
  --bg: #ffffff;
  --light-blue: #e7f2ff;

    /* border */
    --border-image: 1px solid;

    /* box-shadow */
    --box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3);

    /* transition */
    --text-transition: all 0.3s ease;
}




body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: var(--text-dark);
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}


/* ==================== ABOUT SECTION ================== */

/* Section Layout */
.about-section {
  padding: 60px 0;
  background: var(--white);
  margin-bottom: 60px; /* spacing from other sections */
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

/* Image Column */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  max-height: 500px;
}

/* Text Column */
.about-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-intro {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Reasons List */
.about-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--primary);
  padding: 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reason-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.reason-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: rgba(0,123,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.reason-icon img {
  width: 30px;
  height: 30px;
}

.reason-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.reason-text p {
  font-size: 14px;
  color: var(--text-white);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .about-image img {
    max-height: 400px;
  }
}



/* ==================== ABOUT SECTION 2 ================== */

:root {
  --text-dark: #2B2D42;
}

.about-section {
  padding: 60px 0;
  background: #fff;
  margin-bottom: 60px;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* Text Content */
.about-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item img {
  width: 40px;
  height: 40px;
}

.highlight-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.about-text {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Contact Info */
.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-item i {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-image img {
    max-height: 350px;
  }
}




/* ==================== SERVICES SECTION ================== */

.services-section {
  padding: 60px 0;
  background: var(--bg);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 60px; /* professional gap from other sections */
}

.services-container {
  max-width: 1140px; /* similar to a container */
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  align-items: center;
}

/* ===== Left column styles ===== */
.services-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text-dark);
  font-weight: 800;
}

.services-intro {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* Features grid: 2 columns */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px 26px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(0,123,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(0,123,255,0.2);
  transform: rotate(4deg) scale(1.03);
}

/* SVG icon style */
.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.feature-title {
  font-size: 16px;
  margin: 2px 0 6px;
  color: var(--text-dark);
  font-weight: 700;
}

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

/* ===== Right column media (two images with middle blue background) ===== */
.services-media {
  width: 100%;
}

.media-duo {
  display: grid;
  grid-template-columns: 1fr 26px 1fr; /* left image, middle blue, right image */
  align-items: end;
  position: relative;
}

/* The blue decorative background in the middle */
.media-middle {
  width: 100%;
  height: 78%;
  justify-self: center;
  align-self: center;
  background: var(--text-white);
  border: 18px solid var(--light);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* Images */
.media-img {
  width: 100%;
  height: 100%;
  max-height: 380px; /* control overall height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-img.left {
  align-self: start;   /* slight stagger effect */
}

.media-img.right {
  align-self: end;     /* slight stagger effect */
}

.media-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
  .services-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .media-duo {
    grid-template-columns: 1fr; /* stack for very small screens */
    grid-row-gap: 18px;
  }
  .media-middle {
    height: 60px; /* compact decorative bar when stacked */
    border-width: 12px;
  }
  .media-img {
    max-height: 260px;
  }
}



/* ================== VIDEO SECTION ================== */
.video-section {
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 videos per row */
  gap: 20px;
}

/* Individual Video Item */
.video-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Video Item Container */
.video-item {
  background-color: var(--dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 130px; /* Fixed height for uniformity */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Element Styling */
.video-item video {
  object-fit: cover; /*Ensures video fills space nicely */
  max-height: 100%;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.video-item video {
  width: 100%;
  height: auto;
  display: block;
}

.video-section .video-heading{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay Container */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  z-index: 2;
  pointer-events: none; /* Allows video controls to remain clickable */
}

/* Title Styling */
.video-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Meta Info */
.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.9;
}

/* Positioning the Overlay */
.video-item {
  position: relative;
}

/* Video Styling */
.video-item video {
  max-height: 100%;
  max-width: 100%;
  z-index: 1;
}



/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= CUSTOMER REVIEW =================== */

.review-section {
  padding: 60px 0;
  background: var(--white);
  margin-bottom: 60px;
}

.review-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px;
}

.review-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 20px;
  align-items: center;
}

/* Side Images */
.review-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-side img {
  width: 100%;
  border-radius: 8px;
  background-color: #e7e5e5;
  box-shadow: var(--shadow-sm);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Carousel Center */
.review-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  background: #e7e5e5;
  /* background: var(--light); */
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.testimonial-item p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.testimonial-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-side {
    flex-direction: row;
    justify-content: center;
  }
  .review-side img {
    width: 80px;
    display: none;
  }
}

/* Carousel controls */
.carousel-ui {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  color: #333;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  background: #f7f7f7;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot:hover {
  transform: scale(1.15);
}

.carousel-dot.active {
  background: var(--dark);
}


/** =============== FAQ SECTION ============= */

.faq-body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f5f8ff;
}

.faq-container{
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-container h1{
    color: #333;
}

.faq-container .tab{
    position: relative;
    background: #fff;
    padding: 0 20px 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.faq-container .tab input{
    appearance: none;
}

.faq-container .tab label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-container .tab label::after{
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2em;
    color: rgba(0, 0, 0, 0.1);
    transition: transform 1s;
}

.faq-container .tab:hover label::after{
    color: #333;
}

.faq-container .tab input:checked ~ label::after{
    transform: rotate(135deg);
    color: #fff;
}

.faq-container .tab label h2{
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2em;
    border-radius: 5px;
    margin-right: 10px;
}

.faq-container .tab input:checked ~ label h2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.2);
    font-size: 8em;
    justify-content: flex-end;
    padding: 20px;
}

.faq-container .tab:nth-child(2) label h2{
    background: linear-gradient(135deg, #3c8ce7, #00eaff);
}

.faq-container .tab:nth-child(3) label h2{
    background: linear-gradient(135deg, #70f570, #49c628);
}

.faq-container .tab:nth-child(4) label h2{
    background: linear-gradient(135deg, #ff96f9, #c32bac);
}

.faq-container .tab:nth-child(5) label h2{
    background: linear-gradient(135deg, #fd6e6a, #ffc600);
}

.faq-container .tab:nth-child(6) label h2{
    background: linear-gradient(135deg, #212529, #ffc600);
}

.faq-container .tab:nth-child(7) label h2{
    background: linear-gradient(135deg, #ff5400, #181a1e);
}

.faq-container .tab:nth-child(8) label h2{
    background: linear-gradient(135deg, #0075c7, #ff3753, #0a5275);
}

.faq-container .tab:nth-child(9) label h2{
    background: linear-gradient(135deg, #1a1e21, #0075c7);
}

.faq-container .tab label h5{
    position: relative;
    font-weight: 500;
    color: #333;
    z-index: 10;
}

.faq-container .tab input:checked ~ label h5{
    background: #fff;
    padding: 2px 10px;
    color: #333;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-container .tab .content{
    max-height: 0;
    transition: 1s;
    overflow: hidden;
}

.faq-btn{
  background: var(--primary);
  color: white;
  font-weight: bold;
}

.faq-container .tab input:checked ~ .content{
    max-height: 100vh;
}

.faq-container .tab .content p{
    position: relative;
    padding: 10px 0;
    color: #333;
    z-index: 10;
}

/* .faq-container .tab input:checked ~ .content p{
    color: #fff;
} */


/** ================ PARTNERS SECTION ============= */

.partners-title{
  margin-top: 2.5rem;
}



.partners-slider {
  width: 100%;
  height: 120px;
  background-color: #e0e0e0; /* subtle grey background */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: partners-scroll 40s linear infinite;
}

.partner-logo img {
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Continuous scroll animation */
@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* =================== CONTACT SECTION =================== */
:root {
  --bg-light: #f9f9f9;
}

.contact-section {
  padding: 60px 0;
  background: #fff;
  margin-bottom: 60px;
}

.contact-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 55px;
  height: 55px;
  background: #222;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text {
  margin-left: 16px;
}

.info-text .label {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.info-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Contact Form */
.contact-form .form-intro {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* =================== FOOTER SECTION =================== */

.site-footer {
  margin-top: 2rem;
  font-family: Arial, sans-serif;
  color: #ccc;
}

/* Top Footer */
.footer-top {
  background: var(--bg-dark);
  padding: 50px 0;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 30px;
}

.footer-column {
  min-width: 200px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a i {
  margin-right: 8px;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
}

/* Bottom Footer */
.footer-bottom {
  background: var(--bg-darker);
  padding: 15px 0;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
}

.footer-copy a {
  color: var(--primary);
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links a i {
    display: none;
  }
}


/* WhatsApp Button Container */
.whatsapp-button {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 30px;
  height: 30px;
  animation: bounce 2s infinite ease-in-out;
}

/* Bouncing Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 30px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* Ensure consistent spacing between sections */
.sect {
  margin-top: 7rem; /* adjust to taste */
}

/* Optional: reduce spacing on very small screens */
@media (max-width: 576px) {
  .sect {
    margin-top: 42px;
  }
}
/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: var(--primary);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: var(--primary);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}



/* Service Feature Card Styling */
.service-feature {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect: lift + shadow + slight scale */
.service-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Decorative top border accent */
.service-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), #ff9f43);
}

/* Icon styling */
.service-feature i {
  display: inline-block;
  padding: 18px;
  border-radius: 50%;
  /* background: rgba(253, 101, 13, 0.08); */
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Icon hover animation */
.service-feature:hover i {
  /* background: rgba(253, 101, 13, 0.15); */
  transform: rotate(8deg) scale(1.05);
}

/* Title styling */
.service-feature h6 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: #2B2D42;
}

/* Paragraph styling */
.service-feature p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .service-feature {
    text-align: center;
  }
  .service-feature i {
    margin-bottom: 10px;
  }
}


/* Make dropdown items stack vertically */
.dropdown-menu {
    display: block; /* Bootstrap handles show/hide with JS */
    flex-direction: column; /* Force vertical stacking */
    padding: 0;
    margin: 0;
}

.dropdown-item {
    display: block; /* Each link takes full width */
    width: 100%;
    padding: 8px 16px;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Optional: show on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
}




/* Position dropdown menu */
.main-nav .dropdown {
    position: relative;
}

/* Hide dropdown by default */
.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Below the parent link */
    left: 0;
    background: #fff; /* Match your theme */
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

/* Dropdown items vertical */
.main-nav .dropdown-menu li {
    display: block;
}

.main-nav .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav .dropdown-menu li a:hover {
    background: #f8f9fa; /* Light hover effect */
}

/* Show dropdown on hover */
.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}








/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}



/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}


/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: var(--primary);
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #29231e;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: var(--primary);
}

.header-links li i {
  color: var(--primary);
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--secondary);
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
  /* background-color: #fffffffa; */
  border-radius: 50%;
  height: 70px;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 260px);
  margin-right: -4px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: var(--primary);
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
  margin-left: 35px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #fd0d0d;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: var(--primary);
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid var(--primary);
}




/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: var(--primary);
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	Responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}



/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}


/** ================== FOOTER ================ */

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: var(--text-transition);
}
.footer .btn.btn-social:hover {
    color: var(--dark-blue);
    background: none;
}
.footer .btn.btn-social:nth-child(1):hover{
    color: var(--green);
}
.footer .btn.btn-social:nth-child(2):hover{
    color: var(--red);
}
.footer .btn.btn-social:nth-child(3):hover{
    color: var(--dark);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--dark-blue);
    transition: var(--text-transition);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    text-decoration: none;
}

.footer .footer-menu a {
    text-decoration: none;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .footer-menu a:hover{
    color: var(--dark-blue);
}








/* Service Icons */
.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(0,123,255,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-icon {
  background: rgba(0,123,255,0.2);
  transform: rotate(5deg) scale(1.05);
}

.service-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2B2D42;
}

.service-item p {
  font-size: 0.9rem;
  color: #555;
}

/* Decorative background between images */
.img-twice::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  background: var(--light-blue);
  border: 25px solid var(--light);
  border-radius: 6px;
  z-index: -1;
}

/* Image Hover Effect */
.img-twice img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-twice img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .service-item h5 {
    margin-top: 10px;
  }
}












/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}
