/* ========== Navbar Logo ========== */
.navbar-brand img {
  height: 50px;
}

.hero-section {
  position: relative;
  background: url(../../img/sliderbg-001.jpg) no-repeat center center/cover;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px; /* reduced padding */
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px; /* reduced from 30px */
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  color: #002244;
  animation: fadeSlideUp 1.2s ease forwards;
}

.hero-overlay h1 {
  font-weight: 700;
  font-size: 1.8rem; /* reduced from 2.5rem */
  color: #002244;
}

/* ========== Typing Animation ========== */
.typing-text {
  font-size: 2rem;
  font-weight: 700;
  color: #002244;
  overflow: hidden;
  border-right: 3px solid #337AB7;
  animation: typing 3s steps(40, end), blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blinkCaret {
  0%, 100% { border-color: transparent }
  50% { border-color: #337AB7; }
}

/* ========== Highlighted Words ========== */
.highlight {
  color: #235a91;
  font-style: italic;
}
.highlight-blue {
  color: #337AB7;
}

/* ========== Buttons ========== */
.btn-custom-outline {
  border: 2px solid #337AB7;
  color: #337AB7;
  background-color: transparent;
  padding: 8px 18px;
  font-weight: 500;
  transition: 0.3s ease;
}
.btn-custom-outline:hover {
  background-color: #337AB7;
  color: white;
}
.btn-pink {
  background-color: #dc3545;
  color: white;
  padding: 8px 18px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease;
}
.btn-primary-blue {
  background-color: #337AB7;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-radius: 50px;
}
.btn-primary-blue:hover {
  background-color: #286090;
  color: #fff;
}

/* ========== Utilities ========== */
.text-primary-blue { color: #337AB7 !important; }
.bg-primary-blue { background-color: #337AB7 !important; }

/* ========== Scrollable Photos ========== */
.photo-scroll-container {
  margin-top: 30px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.photo-scroll-container img {
  height: 100px;
  width: auto;
  margin: 0 10px;
  border-radius: 8px;
  object-fit: cover;
  display: inline-block;
  transition: transform 0.3s ease;
}
.photo-scroll-container img:hover {
  transform: scale(1.05);
}
.photo-scroll-container::-webkit-scrollbar {
  display: none;
}

/* ========== Floating Flags ========== */
.floating-flag-bubbles {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floating-flag {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: floatUp linear infinite;
}
.floating-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-400px) scale(1.1); opacity: 0; }
}
.flag1 { left: 5%; animation-duration: 10s; animation-delay: 0s; }
.flag2 { left: 20%; animation-duration: 12s; animation-delay: 2s; }
.flag3 { left: 35%; animation-duration: 14s; animation-delay: 4s; }
.flag4 { left: 50%; animation-duration: 11s; animation-delay: 1s; }
.flag5 { left: 65%; animation-duration: 13s; animation-delay: 3s; }
.flag6 { left: 80%; animation-duration: 15s; animation-delay: 5s; }
.flag7 { left: 90%; animation-duration: 12s; animation-delay: 2.5s; }

@media (max-width: 768px) {
  .floating-flag {
    width: 30px;
    height: 30px;
  }
}

/* ========== Image Zoom Hover ========== */
.image-wrapper {
  position: relative;
  transition: transform 0.6s ease;
}
.image-zoom {
  transition: transform 0.6s ease;
}
.image-wrapper:hover .image-zoom {
  transform: scale(1.05);
}
.overlay {
  background: linear-gradient(135deg, rgba(255,0,150,0.2), rgba(0,204,255,0.2));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.image-wrapper:hover .overlay {
  opacity: 1;
}
.badge-slide {
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.image-wrapper:hover .badge-slide {
  transform: translateY(0);
}

/* ========== Service Cards ========== */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 30px;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.service-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
}
.service-text {
  font-size: 1rem;
  color: #4a5568;
}

/* ========== Hero Blur Background ========== */
.hero {
  background: linear-gradient(135deg, #92a2e1, #4a63f4, #5014c8);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>');
  opacity: 0.2;
}
.hero h1 {
  font-size: 2.5rem;
}
.subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.content {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* ========== Floating WhatsApp ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: floatWhats 2.5s ease-in-out infinite;
}
.floating-whatsapp img {
  width: 40px;
  height: 40px;
}
@keyframes floatWhats {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========== Animations ========== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== Animation Utility Classes ========== */
.animate-slide-up {
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.5s;
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.floating-effect {
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fire-glow, .ice-glow {
  position: absolute;
  width: 40px;
  opacity: 0.08;
}
.fire-glow { top: -10px; right: -10px; animation: pulseFire 3s infinite; }
.ice-glow { bottom: -10px; left: -10px; animation: pulseIce 4s infinite; }

@keyframes pulseFire {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.2); opacity: 0.15; }
}
@keyframes pulseIce {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.15); opacity: 0.14; }
}

/* ========== Footer Links Transition ========== */
.footer-section a.transition {
  transition: color 0.3s ease;
}
.footer-section a.transition:hover {
  color: #fdbb2d;
}
/* ========== Floating Icon Style ========== */
.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.7;
  pointer-events: none;
}

/* ========== Badge Tag (Popular) ========== */
.badge-tag {
  position: absolute;
  top: 10px;
  left: 15px;
  background-color: #fdbb2d;
  color: #002244;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ========== Section Heading Underline ========== */
.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60px;
  background-color: #337AB7;
  border-radius: 2px;
}
/* ========== Flag Row ========== */
.flag-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
  margin-top: 20px;
  flex-direction: row;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.flag-row::-webkit-scrollbar {
  display: none;
}

.flag-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.flag-circle:hover {
  transform: scale(1.1);
}
.dark-violet {
  color: #4B0082; /* Dark Violet */
  font-weight: bold;
}



/* 
------------------ */




.get-started-box {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.get-started-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}



          


 /* zeeshan bcom css */
   

    .banner {
      background-image: url("../../img/bcom-banner.jpg");
      height: 350px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      width:100%;
    }

    .banner h1 {
      color: white;
      font-size: 48px;
      font-weight: bold;
      text-align: center;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    }

    .content {
      background: white;
      padding: 40px;
      max-width: 1100px;
      margin: -50px auto 50px auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      height:auto;
      text-align: justify;
    }

    .content h2 {
      text-align: center;
      margin-bottom: 10px;
    }

    .content h3 {
      text-align: center;
      color: #005baa;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .content p {
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .section-heading {
      font-size: 26px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 80px;
    }

    .tab-label {
      background-color: #0099cc;
      color: white;
      padding: 10px 20px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: -2px;
      margin-left: -880px;
    }

    .box-container {
  border: 2px solid #0099cc;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 950px; /* 👈 reduced width */
  margin: 0 auto;   /* 👈 center align */
  margin-left: 90px;
  background-color: white;
}


    .column {
      flex: 1;
      min-width: 300px;
    }

    .column-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      text-align: justify;
    }

    .gray {
      color: gray;
    }

    .orange {
      color: #ff6600;
      text-align: justify;
    }

    .item-list {
      list-style: none;
      padding-left: 0;
      line-height: 2;
      text-align: justify;
    }

    .image-center {
      text-align: left;
      margin-top: 40px;
    }

    .responsive-img {
      max-width: 45%;
      height: auto;
     
    }

    @media(max-width: 768px) {
      .banner h1 {
        font-size: 1.5rem;
        padding: 10px;
      }

      .content {
        padding: 20px;
        margin-top: -30px;
      }
    }
     
     h1 {
      margin-bottom: 40px;
	  text-align: center;
    }
    .card-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }
    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 300px;
      padding: 20px;
      transition: 0.3s;
    }
    .card:hover {
      transform: scale(1.03);
    }
    .card img {
      width: 80px;
      margin-bottom: 20px;
    }
    .card h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #333;
    }
    .duration {
      font-weight: bold;
      margin: 10px 0;
    }
    .price {
      font-size: 18px;
      margin: 10px 0;
    }
    .price del {
      color: gray;
      margin-right: 8px;
    }
    .price span {
      color: #1a73e8;
      font-weight: bold;
    }
    .btn {
      background-color: #1a73e8;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      display: inline-block;
    }
    .testi-heading {
      text-align: center;
      font-size: 32px;
      color: #2c3e50;
      font-weight: 600;
      margin-bottom: 50px;
      letter-spacing: 1px;
    }

    .carousel-container {
      max-width: 850px;
      margin: 0 auto;
      position: relative;
    }

    .testi-card {
      background-color: #ffffff;
      padding: 30px 25px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: transform 0.3s ease;
      position: relative;
    }

    .testi-card img {
      width: 75px;
      height: 75px;
      border-radius: 50%;
      border: 2px solid #00a8e8;
    }

    .testi-content {
      text-align: left;
      flex: 1;
    }

    .testi-content h3 {
      margin: 0;
      font-size: 20px;
      color: #2c3e50;
    }

    .testi-college {
      margin: 5px 0 12px;
      font-weight: 500;
      color: #888;
      font-size: 14px;
    }

    .testi-feedback {
      color: #444;
      font-size: 16px;
      line-height: 1.6;
    }

    .testi-pagination {
      position: absolute;
      top: 20px;
      right: 25px;
    }

    .testi-dot {
      height: 12px;
      width: 12px;
      margin: 0 4px;
      background-color: #ccc;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .testi-dot.testi-active {
      background-color: #00a8e8;
    }

    @media (max-width: 600px) {
      .testi-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .testi-content {
        text-align: center;
      }

      .testi-pagination {
        top: 10px;
        right: 15px;
      }
    }

   

    .internship-container {
      width: 800px;
      background: #fff;
      margin: auto;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .internship-title {
      text-align: center;
      font-size: 26px;
      font-weight: 600;
      color: #333;
      margin-bottom: 30px;
    }

    .internship-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 20px;
    }

    .internship-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .internship-item img {
      width: 45px;
      height: 45px;
      flex-shrink: 0;
    }

    .internship-item h4 {
      margin: 0 0 6px;
      font-size: 16px;
      font-weight: 600;
      color: #222;
      text-align: justify;
    }

    .internship-item p {
      margin: 0;
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .internship-container {
        width: 90%;
        padding: 30px 20px;
      }

      .internship-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .section {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    h2.section-title {
      font-size: 30px;
      font-weight: bold;
      color: #222;
      margin-bottom: 50px;
	  margin-top: 50px;
      position: relative;
    }

    h2.section-title::before,
    h2.section-title::after {
      content: "";
      display: inline-block;
      width: 80px;
      height: 1px;
      background-color: #ccc;
      vertical-align: middle;
      margin: 0 15px;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .card {
      width: 280px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      padding-top: 70px;
      position: relative;
	  text-align: center;
    }

    .circle-photo {
      position: relative;
      width: 120px;
      height: 120px;
      margin: auto;
    }

    .circle-photo img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 5px solid #f2b468;
      object-fit: cover;
    }

    .arc-text {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 140px;
      height: 70px;
      overflow: visible;
    }

    .arc-text svg {
      width: 140px;
      height: 70px;
    }

    .card-box {
      background: #ffc978;
      margin-top: -30px;
      padding: 40px 15px 20px;
      border-radius: 10px;
    }

    .youtube-icon img {
      width: 35px;
      margin-bottom: 10px;
    }

    .name {
      font-weight: bold;
      font-size: 16px;
      color: #6a3000;
    }

    .college {
      font-size: 14px;
      color: #222;
      margin-bottom: 8px;
    }

    .handle {
      font-size: 12px;
      color: #444;
    }

    @media (max-width: 768px) {
      .cards {
        flex-direction: column;
        align-items: center;
      }
    }
     .job-section {
      background: #fff;
      padding: 30px 20px;
      max-width: 1200px;
      margin: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .job-section h2 {
      text-align: center;
      font-size: 24px;
      color: #222;
      font-weight: bold;
      margin-bottom: 30px;
      position: relative;
    }
    

    .job-listings {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .job-card {
      flex: 1;
      min-width: 280px;
      max-width: 32%;
    }

    .job-card ul {
      list-style: none;
      padding: 0;
      font-size: 15px;
      line-height: 1.7;
      color: #333;
      text-align: justify;
    }

    .job-card ul li:first-child {
      font-weight: bold;
    }

    .job-card ul li:first-child::before {
      content: "› ";
      font-weight: bold;
      color: #000;
    }

    @media (max-width: 768px) {
      .job-listings {
        flex-direction: column;
      }

      .job-card {
        max-width: 100%;
      }
    }
    .commerce-tab-container {
      max-width: 1200px;
      margin: auto;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .commerce-tab-heading {
      text-align: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .commerce-tab-buttons {
      display: flex;
      flex-wrap: wrap;
      border-bottom: 2px solid #ccc;
    }

    .commerce-tab-button {
      flex: 1;
      padding: 12px 15px;
      background: #e9e9e9;
      border: none;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
    }

    .commerce-tab-button.active {
      background: #00a0df;
      color: #fff;
      font-weight: bold;
    }

    .commerce-tab-content {
      display: none;
      padding: 20px;
      border: 1px solid #00a0df;
      margin-top: -1px;
      background: #fff;
      text-align: justify;
    }

    .commerce-tab-content.active {
      display: block;
    }

    .commerce-topic-title {
      text-align: justify;
      margin-bottom: 20px;
    }

    .commerce-topic-list {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding-left: 30px;
    }

    .commerce-topic-list ul {
      list-style: none;
      padding-left: 0;
    }

    .commerce-topic-list ul li::before {
      content: "› ";
      color: #000;
      font-weight: bold;
      margin-right: 5px;
    }

    @media (max-width: 768px) {
      .commerce-tab-button {
        flex: 100%;
        text-align: left;
      }

      .commerce-topic-list {
        flex-direction: column;
      }
    }

    
    .commerce-info-section {
      max-width: 1100px;
      margin: auto;
      background-color: #ffffff;
      padding: 40px 30px;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .commerce-info-title {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
    }

    .commerce-info-description {
      font-size: 17px;
      color: #333333;
      line-height: 1.6;
      max-width: 900px;
      margin: auto;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .commerce-info-title {
        font-size: 24px;
      }

      .commerce-info-description {
        font-size: 16px;
      }
    }
    
    .commerce-internship-container {
      max-width: 1100px;
      margin: auto;
      background-color: #ffffff;
      padding: 50px 40px;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      text-align: justify;
    }

    .commerce-internship-heading {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
    }

    .commerce-internship-description {
      font-size: 18px;
      line-height: 1.7;
      color: #333;
      text-align: justify;
      max-width: 900px;
      margin: 0 auto 30px;
    }

    .commerce-internship-list {
      font-size: 17px;
      color: #333;
      line-height: 1.6;
      padding-left: 1px;
      max-width: 1000px;
      margin: auto;
      text-align: justify;
    }

    .commerce-internship-list li {
      margin-bottom: 15px;
      text-align: left;
      margin-left: 60px;
    }

    .commerce-internship-list strong {
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .commerce-internship-heading {
        font-size: 26px;
      }

      .commerce-internship-description,
      .commerce-internship-list {
        font-size: 16px;
      }
    }
    
    .faq-commerce-container {
      max-width: 1100px;
      margin: auto;
      background-color: #fff;
      padding: 50px 40px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }

    .faq-commerce-title {
      font-size: 30px;
      font-weight: 700;
      text-align: center;
      color: #1a1a1a;
      margin-bottom: 35px;
    }

    .faq-commerce-item {
      margin-bottom: 30px;
      text-align: justify;
    }

    .faq-commerce-question {
      font-weight: 600;
      font-size: 18px;
      color: #222;
      margin-bottom: 10px;
      text-align: justify;
    }

    .faq-commerce-answer {
      font-size: 17px;
      color: #444;
      line-height: 1.6;
      text-align: justify;
    }

    .faq-commerce-answer ul {
      margin: 10px 0 0 20px;
      padding-left: 20px;
    }

    .faq-commerce-answer li {
      margin-bottom: 6px;
      text-align: justify;
    }

    @media (max-width: 768px) {
      .faq-commerce-title {
        font-size: 24px;
      }
      .faq-commerce-question {
        font-size: 17px;
      }
      .faq-commerce-answer {
        font-size: 16px;
      }
    }



  
          