:root {
  --btn-bg-color: linear-gradient(135deg, #d97706, #b45309); /* orange-brown gradient */
}
/* Default (Desktop and larger screens) */
h1 {
  font-size: 32px !important;
  font-weight: 600 !important;
  margin: 0.6em 0 !important;
}

h2 {
  font-size: 28px !important;
  font-weight: 600 !important;
  margin: 0.65em 0 !important;
}

h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
  margin: 0.7em 0 !important;
}

h4 {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin: 0.75em 0 !important;
}

h5 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0.8em 0 !important;
}

h6 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 0.85em 0 !important;
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 22px !important; }
  h4 { font-size: 20px !important; }
  h5 { font-size: 18px !important; }
  h6 { font-size: 16px !important; }
}


p {
  font-size: 15px;   /* a bit smaller than Bootstrap 16px */
  font-weight: 400;
  line-height: 1.6;
  margin: 1em 0;
}

/* Banner Css Start */
.banner-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: url('https://www.spanishpoint.ie/wp-content/uploads/2018/10/Modern-Workplace-22.png') center/cover no-repeat;
  filter: blur(0px);
  display: flex;
  justify-content:center;
  align-items: center;
  overflow: hidden;
   animation: fadeInUp1 1.5s ease-out;
  animation-delay: 1s;
  /* padding:0px 60px; */
}

.banner-image::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); /* Blurs background */
    /* background-color: rgba(0, 0, 0, 0.2);  */
  z-index: 1;
 
}
.banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  
}
.banner-heading span{
    background-image: linear-gradient(-45deg, #ee7752, white,#ee7752);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animateTextGradient 4s ease infinite;
}
.banner-heading {
  font-size: 25px;
  font-weight: 800 !important;
   font-style: italic;
  color: #ffffffff;
    
  
   background-color: rgb(15 15 15 / 44%);
    border-radius: 20px;
    padding: 0px 10px !important;
    width:fit-content;
   margin:0px auto;
  
  animation: slideInFromLeft 1.2s ease-out;
  animation-delay: 2s;
}

.banner-title::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  height: 200px;
  width: 30px;
  background: rgba(249, 147, 38, 0.95);
  transform: rotate(35deg);
  animation: shineEffect 2.5s linear infinite;
  z-index: 0;
}
/* Infinite shine animation */
@keyframes shineEffect {
  0% {
    left: -60px;
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  50% {
    left: 100%;
    opacity: 0.2;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.banner-title {

  font-style: italic;
  color: #ffffffff;
  animation: slideInFromRight 1.2s ease-out;
  animation-delay: 2s;
  background-color: rgb(15 15 15 / 44%);
    border-radius: 20px;
    margin: 10px auto;
      position: relative;
  overflow: hidden;
  z-index: 1;

}
@keyframes animateTextGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Animations */
@keyframes fadeInUp1 {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .mobile-banner-overlay{
    padding-left:5px;
    padding-right:5px;
  }
  .mobile-banner-heading span h1{
    font-size:20px !important;
  }
  .mobile-banner-title h2{
    font-size:18px !important;
    font-weight:400 !important;
  }

}
/* Banner Css End */

/* About Content */

.about-content {
  position: relative;

  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-content-bg-img-overlay {
  background-image: url('https://bootstrapmade.com/content/demo/FlexStart/assets/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;

}

.about-content-heading {

  font-weight: 700;
  color: #3e1f06;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.about-content-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #5f1403;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.5s;
}
.about-content-custom-features li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-content-bounce-img {
  animation: bounce 3s infinite;
  max-width: 100%;
  height: auto;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-card {
    width: 100%;
    background-color: #5f1403;
    border: none;
    border: 3px dotted rgb(78, 18, 18);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding:10px;
}
.about-card .about-card-body{
  background-color: #ffffff;
  color:#5f1403;
   border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;;
 
}
.about-card:hover {
 box-shadow: 0 0 10px rgba(139, 69, 19, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
 transform: translateY(-5px);
}

.about-card:hover .about-card{
  background-color: #ffffff;
  color:#fff;
  
}
.about-card:hover .about-card-body{
  background-color: var(--btn-bg-color);
  color:hsl(0, 0%, 100%);
  border:2px solid #fff;
}
.about-card:hover .about-card-body,.about-card:hover .about-card-body .text-techstack,.about-card:hover .about-card-body .text-techstack-icon{
  background-color: var(--btn-bg-color);
  color:#fff;
}
.text-techstack {
  color: #6b1402; /* Deep maroon/brown as per your design */
  font-weight: 600;
  font-size: 1.1rem;
}

.text-techstack-icon {
  color: #6b1402; /* Match title color */
}


/* ABout CONTENT CSS END */
/* WHY COOSE US CSS START */

.why-choose-us-card-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 300px;
  
}
.why-choose-us-card-box:hover {
  transform: translateY(-8px);
  border-top:2px solid #3e1f06;
   border-bottom:2px solid #3e1f06;
}
.why-choose-us-heading {

  font-weight: 700;
  color: #3e1f06;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.why-choose-us-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #5f1403;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.5s;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.bg-gradient-orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.bg-gradient-green {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.why-choose-us-list-card {
    width: 100%;
    background-color: #5f1403;
    border: none;
    border: 3px dotted rgb(78, 18, 18);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding:10px;
}
.why-choose-us-list-card .why-choose-us-list-card-body{
  background-color: #ffffff;
  color:#5f1403;
   border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;;
 
}
.why-choose-us-list-card:hover {
 box-shadow: 0 0 10px rgba(139, 69, 19, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
 transform: translateY(-5px);
}

.why-choose-us-list-card:hover .why-choose-us-list-card{
  background-color: #ffffff;
  color:#fff;
  
}
.why-choose-us-list-card:hover .why-choose-us-list-card-body{
  background-color: var(--btn-bg-color);
  color:hsl(0, 0%, 100%);
  border:2px solid #fff;
}
.why-choose-us-list-card:hover .why-choose-us-list-card-body,.why-choose-us-list-card:hover .why-choose-us-list-card-body .why-choose-us-text-techstack,.why-choose-us-list-card:hover .why-choose-us-list-card-body .text-techstack-icon{
  background-color: var(--btn-bg-color);
  color:#fff;
}
.why-choose-us-text-techstack {
  color: #010101; /* Deep maroon/brown as per your design */
  font-weight: 600;
  font-size: 14px;
}

.text-techstack-icon {
  color: #6b1402; /* Match title color */
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.bg-gradient-orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.bg-gradient-green {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* Colorful floating blobs */
.blob {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.8;
  z-index: 0;
    animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-30px) scale(1.05);

  }
   50% {
    transform: translateY(150px) scale(1.05);
   
  }
}
.blob-1 {
  top: 30%;
  left: 5%;
  background: #d63384;
}
.blob-2 {
  bottom: 15%;
  right: 10%;
  background: #20c997;
}
.blob-3 {
  top: 35%;
 right: 5%;
  background: #20c997;

  transform: translate(-50%, -50%);
}
.why-choose-us {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  z-index: 1;
}
/* WHY CHOOSE US CSS END  */
/* EXPERTISE CSS START */
.expertise-heading {

  font-weight: 700;
  color: #3e1f06;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.expertise-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #5f1403;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.5s;
}
.expertise-list-card {
      border-left: 4px solid #5f1403;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }

    .expertise-list-card:hover {
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transform: translateY(-3px);
     background-color: #5f1403;
     color:white;
    }
     .expertise-list-card:hover .expertise-list-text{
      
     color:white;
    }
   .expertise-list-card:hover .expertise-list-icon{
      
     color: #5f1403;
      background-color: #ffffff;

    }
    .expertise-list-icon {
      font-size: 17px;
      color: #ffffff;
      background-color: #5f1403;
      border-radius:50%;
      padding:8px 8px;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .expertise-list-text {
      font-size: 1rem;
      color: #333;
    }
.expertise-card {
  border-left: 5px solid #A0522D; /* Brown border */
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
/* Expertise Css End */
/* Projects Card  CSS*/
      .develop-card {
  background-color: #fff !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
 
  height: 100%;
  margin:5px 0px;
  padding:0px 13px;
  position: relative;
}

.gradient-card1::after,.gradient-card1::before{
 
  content:'';
  position: absolute;
  height:100%;
  width:93%;
   background:  conic-gradient(from var(--angle),
    #ff4545, transparent, #ff0095, transparent, #ff4545);
    top:50%;
    left:50%;
    translate: -50% -50%;
    z-index:-1;
    padding:3px;
    border-radius:12px;
    animation: 3s spin linear infinite;
}
.gradient-card1::before{
  filter:blur(0.5rem);
  opacity:0.2;
}


@keyframes spin{
  from {
    --angle:0deg;

  }
  to{
    --angle:360deg;
  }
}
.gradient-card1:hover,.gradient-card2:hover,.gradient-card3:hover,.gradient-card:hover {
  transform: translateY(-8px);

  background-color: #fff;
}
.gradient-card1:hover::before,
.gradient-card1:hover::after {
    animation: none;       /* Stop the spinning animation */
    opacity: 0;            /* Optional: fade out the gradient */
}

.develop-card-img{
 margin:0px auto;
    width:150px;
    height:150px;
}
.develop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.develop-card:hover .develop-card-img img {
  transform: scale(1.05);
}
.develop-card:hover .gradient-card1::before {
  opacity: 0;
}
.develop-card:hover{
  background-color: transparent !important;
}
.text-truncate-4-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.6;
  color:#363232;
}
.text-truncate-4-lines p{
font-size:13px;
}


/* Overlay stays the same */
.read-more-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.develop-card:hover .read-more-overlay {
  opacity: 1;
}

/* Enhanced Button */
.read-more-btn,.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: var(--btn-bg-color);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: pulseGlow 3s infinite ease-in-out;
}

.read-more-btn i ,.btn i {
  transition: transform 0.3s ease-in-out;
}

/* Shine Animation */
.read-more-btn::before,.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  animation: shine 3s infinite linear;
  pointer-events: none;
}

.read-more-btn:hover i,.btn:hover i {
  transform: translateX(5px);
}

/* Shine Keyframes */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.6), 0 0 30px rgba(255, 165, 0, 0.4);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.4), 0 0 20px rgba(255, 165, 0, 0.2);
    transform: scale(1);
  }
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 350px;
        margin: 1.75rem auto;
    }
}

/* Project Card Css ENd */
/* Internship Banner */
  .internship-banner {
  position: relative;
  padding: 0px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
  display:flex;
  align-items: center;
  justify-content: center;
}
.internship-banner-content{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.internship-banner-content h1 {
 
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
}

.internship-banner-content h2 {

  margin-top: 1rem;
  animation: fadeInUp 1s ease-in-out;
}

.internship-banner-buttons a {
  display: inline-block;
  padding: 12px 20px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(45deg, #ff6b6b, #f06595);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 600px) {
  .internship-banner-buttons a {
    font-size:10px;
  }
  .internship-banner-content h1 {
    margin: 0 !important;
    font-size:25px !important;
}
}

.internship-banner-buttons a:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #f06595, #ff6b6b);
}

.internship-banner {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.internship-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  z-index: 0;
}

.internship-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

/* Sparkles like party poppers */
.internship-sparkles span.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: sparkle 6s linear infinite;
  opacity: 0.8;
}

@keyframes sparkle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) scale(0.5);
    opacity: 0;
  }
}
/* internship banner css end  */
/* internship why joins us css */


    .internship-section {
  /* background: linear-gradient(135deg, #e7f2faf4, #f5f5f5); */
 
      padding: 3rem 5rem;
     background-image: url('https://img.freepik.com/premium-photo/minimal-light-color-gradient-background_558873-54644.jpg');
     background-repeat: no-repeat;
     background-size: cover;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      filter: blur(85%);
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      position: relative;
     
    }

    .internship-content {
      flex: 1 1 50%;
    }

    .internship-image {
      flex: 1 1 40%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .internship-image img {
      height: 500px;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .internship-section h2 {
   
      color: #882a02ff;
      margin-bottom: 0.5rem;
    }

    .internship-section p.internship-description {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #555;
    }

    .internship-features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
       justify-content: center;
      margin:0px auto;
    }

    .internship-feature-box {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.06);
}


.internship-feature-box:hover {
   background: linear-gradient(135deg, #e7d6e9ff, #f0f4f8);
  border: 1px solid #5b341b;
  color: #000;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.internship-feature-box:hover i{
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

    .internship-feature-box i {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .internship-feature-box h4 {
     
      margin-bottom: 0.25rem;
      color: #222;
    }

    .internship-feature-box p {
      font-size: 0.9rem;
      color: #666;
    }

    @media(max-width: 768px) {
      .internship-section {
        flex-direction: column;
        padding:2rem;
      }
      .internship-slideshow-btn-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow: hidden;
}
.slide-show-content{
  width:100% !important;
 
}

.internship-slideshow-btn-container a {
  white-space: nowrap;   /* keep text in one line */
  flex-shrink: 1;        /* allow buttons to shrink */
  text-overflow: ellipsis;
}
       .internship-image img {
      height: 100%;
      animation: float 6s ease-in-out infinite;
    }

      .internship-features-grid {
        grid-template-columns: 1fr;
      }

      .internship-image {
        order: -1;
      }
    }
   /* Container to hold bubbles */
.internship-section {
  position: relative;
  overflow: hidden;
   z-index: 1;
  
}
/* Bubbles Animation */
.internship-bubble {
  z-index: -1;
  position: absolute;
  border-radius: 30%; /* Less rounded than full circle */
  opacity: 0.50;
  filter: blur(20px); /* Blur effect */
  animation: floatUp 10s infinite ease-in-out;
}

/* Each bubble has its own color */
.internship-bubble1 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(251, 71, 161, 1), rgba(187, 222, 251, 0.3));
  bottom: -100px;
  left: 10%;
  animation-delay: 0s;
}

.internship-bubble2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(102, 187, 106, 1), rgba(200, 230, 201, 0.75));
  bottom: -100px;
  left: 30%;
  animation-delay: 2s;
}

.internship-bubble3 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 201, 40, 1), rgba(255, 224, 130, 0.3));
  bottom: -100px;
  left: 50%;
  animation-delay: 4s;
}

.bubble4 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(239, 83, 80, 1), rgba(255, 205, 210, 0.3));
  bottom: -100px;
  left: 75%;
  animation-delay: 6s;
}

.internship-bubble5 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(126, 87, 194, 1), rgba(209, 196, 233, 0.3));
  bottom: -100px;
  left: 95%;
  animation-delay: 8s;
}

/* Floating animation */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-500px) scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-1000px) scale(1);
    opacity: 0;
  }
}
/* why join css end  */
/* what u learn css */
.timeline-section-heading {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
  padding-top:30px;
}
.timeline-section-heading::after {
  content: "";
  display: block;
  width: calc(100% - 60px); /* subtract padding-left + padding-right */
  border-bottom: 4px solid #8a312a;
  margin: 0 auto; /* center the border */
  position: absolute;
  bottom: 0;
  left: 30px; /* aligns with padding-left */
}

.timeline-section-heading h2 {

      color: #882a02ff;
      margin-bottom: 0.5rem;
}


.timeline-section-heading .subtitle {
 
  color: #000;
  max-width: 600px;
  margin: 10px auto 0;
}



.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.timeline-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.timeline-card-left {
  width: 130px;
  background: #6a11cb; /* default fallback */
  color:#000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.timeline-card-left .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.timeline-card-left .date {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

/* Right Content */
.timeline-card-right {
  padding: 20px;
  flex: 1;
}

.timeline-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.timeline-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.gradient-1 .timeline-card-left {
  background: linear-gradient(135deg, #5ee7df, #b490ca); /* mint-turquoise to soft violet */
}

.gradient-2 .timeline-card-left {
  background: linear-gradient(135deg, #ff9a8b, #ff6a88); /* coral-pink to rose-pink */
}

.gradient-3 .timeline-card-left {
  background: linear-gradient(135deg, #8fd3f4, #84fab0); /* soft sky blue to light green */
}

.gradient-4 .timeline-card-left {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee); /* pastel pink to lavender-blue */
}

.gradient-5 .timeline-card-left {
  background: linear-gradient(135deg, #fddb92, #d1fdff); /* soft gold to icy blue */
}

.gradient-6 .timeline-card-left {
  background: linear-gradient(135deg, #fad0c4, #ffd1ff); /* peachy blush to light pink-lavender */
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    flex-direction: column;
  }

  .timeline-card-left {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }
}
/* certificate css */

.certification-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  gap: 40px;
}

.cert-left .certificate-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  width: 400px;
}

.cert-right {
  max-width: 500px;
}

.cert-right h2 {

  margin-bottom: 20px;
  color: #333;
}

.cert-benefit-card {
  background-color: #ffffff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.cert-benefit-card:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}
/* accordian css */

.faq-section {
  /* background: linear-gradient(to bottom right, #fdfdfd, #f0f4ff); */
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section h2 {

  color: #050505ff;
}

.faq-section p {
  font-size: 1.15rem;
  color: #000000ff;
}

.accordion-item {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-button {
  background: #ffffffff;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.accordion-button:hover {
  background: #ffffffff;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffffff;
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #000;
  background-color: #e5e5e5ff;
  border-top: 1px solid #dee2e6;
  border-radius: 0 0 12px 12px;
}

/* Slideshow  */

.slide-show-content{
     width:70%;
     padding-left:10%;
     padding-right:10%;
     
   }
   .slide-show-content .slide-show-content-subtitle span{
    border:1px solid #ffc107;;
    padding:5px;
    border-radius:20px;
    color:black;
    background-color:#ffc107;
    font-size: 14px;
    

    /* color:rgba(253, 210, 19, 1); */
    
   }
   
  .slide-show-icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  /* marquee */
  .marquee-section{
    background-color:  #5f1403;
  }
  
  /* Course Sidebar */

  
    .card-list .card {
      margin-bottom: 1rem;
    }
    .info-cards-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.info-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  flex: 1 1 180px;
  max-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h5 {

  color: #333;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 18px;
  font-weight: bold;
  color: #007BFF;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .info-cards-container {
    justify-content: space-around;
  }
  .course-content{
  width:94% !important;
  margin:0px auto;
}
}

@media (max-width: 480px) {
  .info-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.course-right-content > div[id]::before {
  content: "";
  display: block;
  height: 100px; /* header height */
  margin-top: -100px; /* negative margin to keep layout intact */
  visibility: hidden;
}
.course-content{
  width:90%;
  margin:0px auto;
}
.sidebar {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  margin:20px 0px;
}

/* Fixed heading area */
.sidebar-header {

  flex-shrink: 0;

  z-index: 1;
  
}

.sidebar-title {
  
  font-weight: 600;
  border-radius:0px !important;
 
}


/* Scrollable links only */
.sidebar-links {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 10px 15px;
}
.sidebar-links::-webkit-scrollbar {
  display: none;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* Active state */
.sidebar-links a.active {
  border-left: 4px solid #8B5E3C;
  background-color: rgba(139, 94, 60, 0.05);
  color: #8B5E3C;
}

/* Hover animation */
.sidebar-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, #a97452, #6b4c3b);
  z-index: 0;
  transition: width 0.4s ease;
  border-radius: 4px;
}
.sidebar-links a:hover::before {
  width: 100%;
}
.sidebar-links a:hover {
  color: white;
}
.sidebar-links a i,
.sidebar-links a .link-text {
  position: relative;
  z-index: 1;
}

/* Divider */
.sidebar-links a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

/* Mobile: icons only */
@media (max-width: 768px) {
  .sidebar-title,
  .sidebar-underline,
  .link-text {
    display: none;
  }

  .sidebar {
    align-items: center;
    height: auto;
  }

  .sidebar-links a {
    justify-content: center;
    padding: 10px;
    border-left: none;
    margin-bottom: 10px;
  }
}

.course-right-content{
  background-color:#fff;
  border-radius:20px;
 
 
  margin:20px 0px;
 
}


  .course-about-brown-heading {
    color: #8B4513; /* Brown */
    border-bottom: 2px solid #8B4513;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .course-about-content {
    display: flex;
    align-items: flex-start;
    width:100%;
    
  }
  .course-right-content > div[id] .course-about-brown-heading {
    display: block;
    position: relative;

}


  .course-about-content p {
    width:70%;
    font-size: 16px;
    padding-right:20px;
    line-height: 1.6;
  }

  .course-about-float-image {
    max-width: 250px;
    height: auto;
    
   
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   margin-top:-50px;
  }

  .course-about-subtitle {
    font-size: 18px;
    color: #444;
    margin: 10px 0 20px;
    display: block;
  }

  .course-about-highlight {
    color: #000;
  }
  .custom-card {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, #ffe1ca, #fff4eb);
  box-shadow: 0 12px 25px rgba(139, 94, 60, 0.2);
}

.custom-card h5 {
  font-weight: 600;
  color: #5c3d2e;
  transition: color 0.3s ease;
}

.custom-card p {
  color: #4a4a4a;
  margin-top: 10px;
  font-size: 0.95rem;
}

.custom-card:hover h5 {
  color: #8B5E3C;
}
.key-features-section {
  padding: 30px 0;
}

.key-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  line-height: 1.8;
  font-size: 16px;
}

.key-features-list li::before {
  content: "🚀 ";
  margin-right: 5px;
}
.key-features-section {
  padding: 40px 20px;

}

.brown-heading {
  color: #8B4513;

  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.brown-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #8B4513;
  margin-top: 5px;
}

.subtitle {

  color: #444;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #ffffffff;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom:10px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #fffaf2;
}

.icon-color-1 { color: #f97316; } /* orange */
.icon-color-2 { color: #16a34a; } /* green */
.icon-color-3 { color: #eab308; } /* yellow */
.icon-color-4 { color: #dc2626; } /* red */
.icon-color-5 { color: #2563eb; } /* blue */
.underline-heading {

  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.underline-heading::after
 {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.5s;
}

.underline-heading-brown {

  font-weight: 700;
  color: #5f1403;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.underline-heading-brown::after
 {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #5f1403;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.5s;
}

.underline-heading-brown-width {

  font-weight: 700;
  color: #5f1403;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.underline-heading-brown-width::after
 {
    content: "";
    width: 200px;
    height: 3px;
    background-color: #5f1403;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: width 0.5s;
}
/* Portfolio CSS */
.portfolio1-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio1-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Image */
.portfolio1-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Default visible overlay */
.portfolio1-overlay1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #500606 10%, rgba(122, 51, 4, 0.95) 95%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 20px;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

/* Hidden detailed overlay */
.portfolio1-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #500606 10%, rgba(122, 51, 4, 0.95) 95%);
  color: #fff;
  text-align: center;
  padding: 30px 20px 30px;
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

/* Show detailed overlay on hover */
.portfolio1-card:hover .portfolio1-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio1-card:hover .portfolio1-overlay1 {
  opacity: 0;
  transform: translateY(-20px);
}

/* Icon */
.portfolio1-icon {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #fff;
  color: #1579dd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  z-index: 3;
}

.portfolio1-card:hover .portfolio1-icon {
  transform: translate(-50%, -120%) scale(0.9);
  opacity: 0;
}

/* Titles and text */
.portfolio1-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.portfolio1-desc {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease-in-out;
}

.portfolio1-card:hover .portfolio1-desc {
  opacity: 1;
  transform: translateY(0);
}

.portfolio1-overlay .btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}

.portfolio1-overlay .btn:hover {
  background: #1579dd;
  color: #fff;
}
/* Infinite moving gradient underline */
.portfolio_underline-animate {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.portfolio_underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(270deg, #8B4513, #A0522D, #D2691E); /* brown shades */
  background-size: 600% 100%;
  border-radius: 2px;
  animation: portfoliogradientMove 3s linear infinite;
}

@keyframes portfoliogradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.leave-comment {
  display: inline-block;
  border-bottom: 4px solid #721500; /* bright orange underline */
  padding-bottom: 5px; /* space between text and underline */
  color: #5a2a27; /* text color */
}

.text-brown { color: #8B4513; }
.college-project-card {
  background: #ffffff;
  border-radius: 20px;
}
.college-project-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.college-project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  background-color: #f9f9ff; /* subtle highlight */
}


/* ecommerce css */
/* ==== Grid Layout ==== */
.ecommerce-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 20px;
}
/* ==== Heading Styling ==== */
.ecommerce-section-heading {
  font-size: 2rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  color: #222; /* Keep "🚀 Explore Our" in dark gray/black */
  font-weight: 700;
}

/* Brown gradient for keyword only */
.ecommerce-highlight-text {
  background: linear-gradient(135deg, #d97706, #b45309); /* Brown shades */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  position: relative;
}

/* Static underline (full heading) */
.ecommerce-section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #d97706, #b45309);
  border-radius: 3px;
}

/* ==== Subtitle Styling ==== */
.ecommerce-section-subtitle {
  font-size: 1.15rem;
  color: #555; /* Normal gray for body text */
  max-width: 650px;
  margin: 18px auto 0;
  line-height: 1.6;
  text-align: center;

  display: inline-block;
  padding-bottom: 6px;
}
.ecommerce-section-subtitle .ecommerce-emphasis {
  color: #000000; /* Highlight only key phrase in brown */
  font-weight: 600;
}

/* Simple fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}
.ecommerce-product-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), 
              0 12px 32px rgba(0, 0, 0, 0.08); /* layered shadows */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecommerce-product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 
              0 20px 40px rgba(0, 0, 0, 0.12); /* stronger on hover */
}

/* ==== Image Section ==== */
.ecommerce-product-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ecommerce-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(189, 186, 186, 0.4), transparent);
}

/* ==== Discount Badge ==== */
.ecommerce-product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #fa2f2f, #ff3734);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  z-index: 2;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ==== Warranty Badge ==== */
.ecommerce-warranty-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #f2d845, #ffe96a);
  color: #000000;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  z-index: 2;
}

/* ==== Quick View Button ==== */
.ecommerce-product-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.ecommerce-product-card:hover .ecommerce-product-actions {
  opacity: 1;
}
.ecommerce-product-quick-view {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ecommerce-product-quick-view:hover {
  background: #000;
}

/* ==== Info Section ==== */
.ecommerce-product-info {
  padding: 16px;
}
.ecommerce-product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.ecommerce-product-category {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
  text-transform: uppercase; /* 👈 category uppercase */
}

/* ==== Brand Badge ==== */
.ecommerce-brand-badge {
  display: inline-block;
  background: #3498db;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==== Pricing ==== */
.ecommerce-product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ecommerce-price {
  color: #2ecc71;
  font-size: 18px;
  font-weight: bold;
}
.ecommerce-original-price {
  color: #999;
  text-decoration: line-through !important;
  font-size: 14px;
  font-weight: normal;
}

/* ==== Rating ==== */
.ecommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}
.ecommerce-stars .star {
  color: #f1c40f;
  font-size: 14px;
}
