/********** Template CSS **********/
:root {
    --primary: #FFCC00;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btns {
    font-weight: 500;
    transition: .5s;
    background-color: #FFCC00;
    color: #373435;
}
.btns:hover {
   color: #FFCC00;
   background-color: #373435;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #fff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/* Basic Styling for Heading */
.animated-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 15px; /* Size thoda chhota */
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    margin: 10px;
    line-height: 1.3;
    text-transform: capitalize; /* <-- CamelCase enabled here */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1.5s ease forwards;
  }
  
  /* Highlighted Text - Yellow and Capital */
  .highlighted-text {
    color: #f7b500; /* Yellow Color */
    font-weight: 800;
    text-transform: uppercase; /* <-- Only MOST RELIABLE will be in all caps */
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  /* Underline Animation on Hover */
  .highlighted-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #f7b500; /* Yellow underline */
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease;
  }
  
  /* Hover Effects */
  .highlighted-text:hover::after {
    width: 100%;
  }
  
  /* Keyframes for Fade Slide Up */
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    /* background: rgba(0, 0, 0, .65); */
    z-index: 1;
}

.carousel-caption .hero-content{
    padding: 25px;
    background: linear-gradient(to right, rgba(40, 40, 40, 0.8), rgba(60, 60, 60, 0.3));
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}
.carousel-caption .hero-content h2{
    font-size: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 8px; /* Optional spacing */
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/team-breadcrume-bg.webp) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .30);
}

.facts-overlay h2 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}
.service-item .service-text h5{
    color: #FFCC00;
}

.service-item:hover .service-text * {
    color: #363435 !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/toshi-automation.webp) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 100%;
    /*bottom: 1px;*/
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

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

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

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

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

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

/* Custom Css of contact section */
.contact-section {
    background: #FFCC00;
    padding: 60px 0;
    color: #000;
  }
  .contact-form-custom .form-control {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 8px;
  }
  .contact-form-custom .form-control::placeholder {
    color: #666;
    opacity: 1;
  }
  .contact-form-custom .form-floating > label {
    color: #555;
    font-weight: 500;
  }
  .contact-form-custom .form-floating > .form-control:focus ~ label,
  .contact-form-custom .form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.7;
    transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
  }
  .contact-right-info {
    color: #000;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .contact-right-info h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .contact-right-info p,
  .contact-right-info a {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact-right-info a:hover {
    text-decoration: underline;
  }
  .contact-right-info i {
    font-size: 20px;
    color: #000;
  }
  .btn-custom-black {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
  }
  .btn-custom-black:hover {
    background-color: #222;
  }

  .custom-card {
    background: #373435;
    border: 2px solid #373435;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    color: #FFCC00;
    /* border-color: #FFCC00; */
  }
  .custom-card:hover {
    background: #FFCC00;
    color: #373435;
    border-color: #373435;
  }
  .card-body-custom {
    padding: 30px;
    text-align: center;
  }
  .custom-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #FFCC00;
    transition: color 0.3s;
  }
  .custom-card:hover .custom-icon {
    color: #373435;
  }
  .custom-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFCC00;
    transition: color 0.3s;
  }
  .custom-card:hover .custom-title {
    color: #373435;
  }
  .custom-text {
    font-size: 16px;
    color: #FFCC00;
    transition: color 0.3s;
    text-decoration: none;
  }
  .custom-card:hover .custom-text {
    color: #373435;
  }
  /* Link styles */
  .custom-link {
    color: #FFCC00;
    text-decoration: none;
    transition: color 0.3s;
  }
  .custom-card:hover .custom-link {
    color: #373435;
  }
  .custom-link:hover {
    text-decoration: underline;
  }
  /* Animation */
  .fade-up {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
  }
  @keyframes fadeUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
    from {
      transform: translateY(30px);
      opacity: 0;
    }
  }

  /* Fact Custom Css Section */
/* Carousel Slide Hover Effect */
.carousl {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}
.swiper {
  padding: 40px 20px;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.swiper-slide:hover {
  transform: scale(1.03);
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.facts-overlay {
  position: absolute;
  bottom: 20px;
  /* left: 20px; */
  color: white;
  z-index: 10;
}
.facts-overlay h2 {
  font-size: 48px;
  font-weight: bold;
  -webkit-text-stroke: 1px yellow;
  color: transparent;
  margin: 0;
}
.facts-overlay h4 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 8px 0 0;
}
.swiper-button-next,
.swiper-button-prev {
  color: yellow;
}
.carousl {
  position: relative;
}

.carousl img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.facts-overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .facts-overlay h2 {
      font-size: 36px !important;
  }

  .facts-overlay h4 {
      font-size: 16px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
      display: none; /* optional: hide nav buttons on mobile */
  }
}

/* Career page css  */
.job-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-badge {
  background-color: #373435;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

.job-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #373435;
}

.job-info {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.apply-btn {
  border: 2px solid #FFCC00;
  color: #373435;
  background-color: transparent;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
}

.apply-btn:hover {
  background-color: #FFCC00;
  color: #000;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #373435;
  margin: 40px 0 20px;
}

/* Common Modal Styles */
.job-modal .modal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-modal .modal-header {
  background-color: #FFCC00;
  color: white;
  border-bottom: 2px solid #ddd;
  padding: 15px;
}

.job-modal .modal-title {
  font-weight: 600;
  color: #373435;
}

.job-modal .modal-body {
  font-size: 14px;
  color: #333;
}

.job-modal .modal-footer {
  display: flex;
  justify-content: center;
  /* background-color: #FFCC00; */
}

.job-modal .btn-warning {
  background-color: #FFCC00;
  border: 1px solid #FFCC00;
  color: #373435;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.job-modal .btn-warning:hover {
  background-color: #373435;
  color: #fff;
}


/* Form Section Styling */
#applicationForm {
  background-color: #FFCC00;
  color: #000;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Section Title */
#applicationForm .section-title {
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

/* Labels */
#applicationForm .form-label {
  font-weight: 500;
  color: #000;
}

/* Inputs, Select & File Upload */
#applicationForm .form-control,
#applicationForm .form-select {
  border-radius: 8px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}

#applicationForm .form-control:focus,
#applicationForm .form-select:focus {
  border-color: #000;
  box-shadow: 0 0 5px #37343555;
  outline: none;
}

/* Submit Button */
#applicationForm .btn-dark {
  background-color: #000;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: bold;
  transition: 0.3s ease;
}

#applicationForm .btn-dark:hover {
  background-color: #2e2c2b;
  box-shadow: 0 0 10px #37343599;
}

/* Header Box Custom Css */
.carousel-caption {
  position: absolute;
  bottom: 60px;
  right: 2px;
  top: 18rem;
  left: auto;
  text-align: center;
  /* z-index: 10; */
}

.carousel-caption .hero-content {
  background: rgba(0, 0, 0, 0.5); /* dark translucent background */
  padding: 50px, 0px, 50px, 0px;
  border-radius: 8px;
  display: inline-block;
}

@media (max-width: 768px) {
  .carousel-caption {
    bottom: 20px;
    left: 10px;
    right: 10px;
    text-align: center;
  }

  .carousel-caption .hero-content {
    width: 100%;
    padding: 15px;
  }

  .carousel-caption h2 {
    font-size: 22px !important;
  }

  .carousel-caption h5 {
    font-size: 16px !important;
  }

  .carousel-caption .btns {
    display: none !important;
  }
}
/*-------------------------------------- Contact page css --------------------------------------- */
/* Contact section background */
.contact-section {
  background-color: #fff;
}

/* Form styles */
.form-box {
  background-color: #373435;
  color: #fff;
  border: 2px solid #FFCC00;
  border-radius: 10px;
  transition: all 0.4s ease;
}
.form-box:hover{
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.f-control {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 15px;
  width: 100%;
  color: #373435;
  ;
}

.f-control:focus {
  border-color: #FFCC00;
  outline: none;
}

/* Submit button */
.btn-custom {
  background-color: #FFCC00;
  color: #373435;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #373435;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

/* Info cards */
.info-card-rect {
  background-color: #373435;
  color: #fff;
  border: 2px solid #FFCC00;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  flex: 1;
}

/* Icon styles */
.icon-box i {
  font-size: 28px;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

/* Hover effect on cards */
.info-card-rect:hover {
  background-color: #FFCC00;
  color: #373435;
  border-color: #373435;
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Change icon and text on hover */
.info-card-rect:hover .icon-box i,
.info-card-rect:hover .info-title,
.info-card-rect:hover .info-link {
  color: #373435;
  ;
}

/* Icon bounce animation */
.info-card-rect:hover .icon-box i {
  animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
  0% {
      transform: translateY(0);
  }

  30% {
      transform: translateY(-6px);
  }

  50% {
      transform: translateY(0);
  }

  70% {
      transform: translateY(-3px);
  }

  100% {
      transform: translateY(0);
  }
}

/* Title styles */
.info-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #FFCC00;
}

/* Link styles */
.info-link {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #FFCC00;
}

/* Responsive */
@media (max-width: 768px) {
  .info-card-rect {
      margin-bottom: 20px;
  }
}
.product-section h3 {
  color: #373435;
  font-weight: 700;
}

.product-section p {
  color: #373435;
  text-align: justify;
  font-size: 16px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #373435;
  font-size: 16px;
}

.feature-list li i {
  color: #FFCC00;
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .col-6 {
      width: 100%;
  }
}
/* Product Page Gallery Css */
.carousl-2 {
  /* background: #f8f8f8; */
  padding: 40px 0;
}

.swiper {
  padding: 20px 0;
}

.swiper-slide {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFCC00;
}

@media (max-width: 767.98px) {
  .swiper-slide {
      max-width: 90%;
      margin: auto;
  }
}

/* Features ANd Technical Support Section css */
.product-features h3 {
  color: #373435;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-box, .support-box {
  background: #fdfdfd;
  border-left: 5px solid #FFCC00;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
}

.feature-box:hover, .support-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-list,
.support-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list li,
.support-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #373435;
  font-size: 16px;
}

.feature-list li i,
.support-list li i {
  color: #FFCC00;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .col-lg-6 {
      width: 100%;
  }
}
/* Application Css */
.application-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.application-section h2 {
  color: #373435;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.app-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #FFCC00;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.app-card i {
  font-size: 36px;
  color: #FFCC00;
  margin-bottom: 15px;
  transition: 0.3s;
}

.app-card h5 {
  font-size: 18px;
  color: #373435;
  font-weight: 700;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}
/* Faq Css */
.faq-section {
  background: #fff;
  padding: 60px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #373435;
  margin-bottom: 40px;
}

.accordion-item {
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.accordion-button {
  background: #FFCC00;
  color: #373435;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}

.accordion-button:hover {
  background-color: #e6bb00;
}

.accordion-button::after {
  color: #373435;
}

.accordion-body {
  margin-top: -1px;
  border-radius: 0 0 10px 10px;
  background: #FFCC00;
  color: #373435;
  border: 1px solid #eee;
  border-top: none;
  font-weight: 500;
}
.accordion-button.collapsed::after {
  transform: rotate(180deg);
}

.accordion-button i {
  color: #373435;
  font-size: 16px;
  margin-right: 10px;
}


  