@charset "UTF-8";
:root {
  --primary: #1976D3;
  --secondary: #e63946;
  --accent: #2a9d8f;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --orange: #FF6600;
  --blue: #1976D3;
  --light-blue: #1976D3;
}

/* Default: show desktop, hide mobile */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Media Query: for mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
header {
  z-index: 1000;
  font-family: "Fenix", serif;
  font-weight: 400;
  font-style: normal;
}
header .logo {
  color: var(--primary);
  display: flex;
  align-items: center;
  height: 50px;
  width: 100px;
}
header .logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
header .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  height: 24px;
  width: 24px;
  transition: color 0.3s;
}
header .mobile-nav-bar .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .mobile-nav-bar .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.65);
  height: 24px;
  width: 24px;
  transition: color 0.3s;
}
header .mobile-nav-bar .social-icons a svg {
  height: 24px;
  width: 24px;
}
header .nav-left .nav-link {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
header .nav-left .nav-link:hover {
  color: var(--orange);
}
header .nav-left .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  color: var(--orange);
  transition: width 0.3s;
}
header .nav-left .nav-link:hover::after {
  width: 100%;
  color: var(--orange);
}
@media (max-width: 991px) {
  header .logo {
    position: static;
    transform: none;
    font-size: 1.6rem;
    margin: 0 auto;
    text-align: center;
    padding-left: 0;
    justify-content: center;
  }
  header .navbar-collapse {
    background: var(--light);
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
  }
  header .navbar-nav .nav-item {
    margin-bottom: 0.8rem;
  }
  header .nav-right {
    order: -1;
    justify-content: center;
  }
  header .nav-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
  }
}
@media (max-width: 576px) {
  header .logo {
    font-size: 1.4rem;
    justify-content: center;
    padding-left: 0;
    height: 50px;
  }
  header .nav-right a {
    font-size: 1rem;
  }
}

footer {
  background-color: #130423;
  color: var(--light);
  padding: 50px 0 0;
  font-family: "Poppins", sans-serif;
}

.content {
  border-bottom: 1px solid var(--light-gray);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 30px;
}

.footer-call {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}
.footer-call .call-icon {
  background: var(--light);
  color: var(--orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transform: rotate(270deg);
}
.footer-call .call-text {
  display: flex;
  flex-direction: column;
}
.footer-call .call-text .call-label {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--orange);
  font-size: 0.85rem;
}
.footer-call .call-text .call-number {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-weight: 700;
  color: var(--light);
}

.vertical-divider {
  width: 1px;
  height: 120px;
  background-color: var(--light-gray);
  opacity: 0.6;
}

.footer-newsletter {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
@media (max-width: 576px) {
  .footer-newsletter {
    margin-bottom: 16px;
  }
}
.footer-newsletter h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 576px) {
  .footer-newsletter h4 {
    font-size: 1rem;
  }
}
.footer-newsletter .newsletter-form {
  display: flex;
  background: rgb(32, 11, 58);
  border-radius: 30px;
}
.footer-newsletter .newsletter-form input {
  background: rgb(32, 11, 58);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  user-focus: none;
  border: none;
  padding: 10px 15px;
  border-radius: 30px 0 0 30px;
  color: var(--light);
  width: 200px;
}
.footer-newsletter .newsletter-form input:focus {
  outline: none;
  box-shadow: none;
}
.footer-newsletter .newsletter-form input::placeholder {
  color: var(--light);
}
.footer-newsletter .newsletter-form button {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background: rgb(48, 18, 86);
  border: none;
  padding: 10px 20px;
  color: var(--light);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-newsletter .newsletter-form button:hover {
  background: rgb(88, 40, 160);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(88, 40, 160, 0.3);
}

.footer-grid {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--light);
}

.footer-col .be-motion {
  font-family: "Fenix", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
}

.footer-col p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
  max-width: 90%;
  white-space: normal;
}

.footer-links {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: 0.3s;
}

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

.social-links {
  display: flex;
  width: 200px;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border-radius: 50%;
  transition: 0.3s;
}
.social-links a:hover {
  transform: translateY(-3px);
}

.copyright {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 15px 0;
  color: var(--light-gray);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-top .footer-call,
  .footer-top .footer-newsletter {
    justify-content: center;
    flex: unset;
  }
  .footer-top .footer-newsletter {
    flex-direction: column;
  }
  .footer-top .footer-newsletter h4 {
    font-size: 1rem;
  }
  .footer-top .footer-newsletter h4 br {
    display: none;
  }
  .footer-top .footer-newsletter .newsletter-form {
    align-items: center;
  }
  .footer-top .footer-newsletter .newsletter-form input, .footer-top .footer-newsletter .newsletter-form button {
    width: 100%;
    border-radius: 30px !important;
  }
  .footer-top .footer-newsletter .newsletter-form button {
    margin-bottom: 0;
  }
  .footer-top .vertical-divider {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .footer-grid .footer-col {
    align-items: center;
    justify-content: center;
  }
  .footer-col:first-child {
    text-align: center;
  }
  .footer-col:first-child p {
    text-align: center;
    margin: 0 auto;
  }
  .footer-col:first-child .social-links {
    width: 100%;
    justify-content: center;
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .footer-col {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .newsletter-form input {
    width: 100%;
  }
}
.page-identifier {
  margin-top: 70px;
  background: url("/assets/images/product_page/loving-hens.webp") center/cover no-repeat;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.page-identifier .overlay {
  background: rgba(22, 29, 57, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-identifier h1 {
  font-size: 3.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.page-identifier .breadcrumb {
  margin-top: 1rem;
  font-size: 1rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.page-identifier .breadcrumb .breadcrumb-item a {
  opacity: 0.9;
}
.page-identifier .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
  opacity: 1;
}
.page-identifier .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
  content: "»";
  margin: 0 0.5rem;
}
@media (max-width: 1200px) {
  .page-identifier {
    height: 800px;
  }
  .page-identifier h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .page-identifier {
    height: 600px;
  }
  .page-identifier h1 {
    font-size: 2.5rem;
  }
  .page-identifier .breadcrumb {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .page-identifier {
    height: 400px;
  }
  .page-identifier h1 {
    font-size: 2rem;
  }
  .page-identifier .breadcrumb {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .page-identifier {
    height: 250px;
  }
  .page-identifier h1 {
    font-size: 1.6rem;
  }
  .page-identifier .breadcrumb {
    font-size: 0.75rem;
  }
}

.hero {
  background: url("/assets/images/cookreyan.webp") no-repeat center center;
  background-size: cover;
  height: 90vh;
  margin-top: 70px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero .company-bar {
  width: 100%;
  position: absolute;
  bottom: -80px;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.hero .company-bar .company-icons {
  max-width: 1000px;
  background: var(--light-gray);
  padding: 20px 40px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.hero .company-bar .icon-box {
  text-align: center;
  flex: 1;
  width: 100px;
}
.hero .company-bar .icon-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 5px;
}
.hero .company-bar .icon-box p {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gray);
}

@media (max-width: 1200px) {
  .hero .company-bar .company-icons {
    padding: 20px;
    gap: 24px;
  }
  .hero .company-bar .icon-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
  .hero .company-bar .icon-box p {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .hero .company-bar .company-icons {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .hero .company-bar .company-icons::-webkit-scrollbar {
    display: none;
  }
  .hero .company-bar .icon-box {
    flex: 0 0 30%;
    max-width: unset;
    text-align: center;
    scroll-snap-align: start;
  }
  .hero .company-bar .icon-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .hero .company-bar .icon-box p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
  .hero .company-bar {
    top: 90%;
    padding: 0 10px;
  }
  .hero .company-bar .company-icons {
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    padding: 15px 15px;
  }
  .hero .company-bar .icon-box {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 4px;
    justify-content: flex-start;
    scroll-snap-align: start;
  }
  .hero .company-bar .icon-box img {
    width: 65px;
    height: 65px;
    margin-bottom: 0;
    object-fit: cover;
  }
  .hero .company-bar .icon-box p {
    font-size: 0.85rem;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .hero .company-bar .company-icons {
    margin: 0;
    padding: 10px 0;
  }
  .hero .company-bar .icon-box {
    flex: 0 0 45%;
    gap: 5px;
  }
  .hero .company-bar .icon-box img {
    width: 70px;
    height: 70px;
    object-fit: cover;
  }
  .hero .company-bar .icon-box p {
    font-size: 0.8rem;
  }
}
.features {
  background: var(--light);
  padding: 160px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}
.features .experience-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.features .experience-left {
  position: relative;
}
.features .experience-left img {
  width: 500px;
  border-radius: 10px;
}
.features .experience-left .badge {
  position: absolute;
  bottom: -30px;
  left: 100px;
  background: var(--light);
  border-radius: 40px;
  padding: 20px 40px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  display: inline-block;
}
.features .experience-left .badge .badge-content {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.features .experience-left .badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.features .experience-left .badge .years .plus {
  font-size: 1rem;
  vertical-align: super;
  color: var(--orange);
  margin-left: 2px;
}
.features .experience-left .badge .text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.features .experience-left .badge .text .label {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 500;
}
.features .experience-left .badge .text .highlight {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}
.features .experience-right {
  max-width: 540px;
}
.features .experience-right p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}
.features .experience-right .features-list {
  display: flex;
  list-style: none;
  gap: 24px;
  padding: 0;
  margin-bottom: 30px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.features .experience-right .features-list .lists {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features .experience-right .features-list .lists li {
  display: flex;
  align-items: center;
}
.features .experience-right .features-list .lists li i {
  margin-right: 10px;
  color: var(--secondary);
}
.features .experience-right .signature {
  display: flex;
  align-items: center;
  gap: 20px;
}
.features .experience-right .signature img {
  height: 40px;
}
.features .experience-right .signature h4 {
  margin: 0;
  color: var(--primary);
}
.features .experience-right .signature p {
  margin: 0;
  font-style: italic;
  color: var(--gray);
}

@media (max-width: 576px) {
  .features {
    padding: 100px 50px 0;
  }
  .features .experience-wrap {
    flex-direction: column;
    padding: 10px;
  }
  .features .experience-wrap .experience-left img {
    width: 300px;
  }
  .features .experience-wrap .experience-left .badge {
    left: 0;
    right: 5px;
  }
}
.explore-section {
  height: 800px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .explore-section {
    padding: 60px 0 0 0;
  }
}
.explore-section .explore-layout {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio = 9 / 16 * 100 */
  overflow: hidden;
  display: flex;
  height: 100%;
  padding: 60px 0;
  justify-content: center;
  align-items: center;
}
.explore-section .explore-layout iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.explore-section .explore-layout .explore-layout-left {
  flex: 1.4;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.explore-section .explore-layout .explore-layout-left .overlay-content {
  position: relative;
  width: 100%;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .image-content {
  position: absolute;
  right: 0;
  bottom: 0;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .image-content .img img {
  width: 300px;
  border: 15px solid #172234;
  border-radius: 50% 50% 8px 8px;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box {
  position: absolute;
  right: 50px;
  bottom: 300px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 8px;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box .video-btn {
  color: #1976D3;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container {
  position: absolute;
  right: 260px;
  bottom: 50px;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #38b6ff;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  max-width: 330px;
  max-height: 100px;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .call-title {
  font-size: 0.5rem;
  opacity: 0.8;
  color: var(--dark);
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .phone-number {
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark);
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-icon {
  background: white;
  color: #38b6ff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  position: relative;
  right: 28px;
  transform: rotate(270deg);
}
.explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.explore-section .explore-layout .explore-layout-right {
  flex: 1;
  height: 100%;
}
.explore-section .explore-layout .explore-layout-right .overlay-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
  height: 100%;
}
.explore-section .explore-layout .explore-layout-right .overlay-content .image-content .img img {
  width: 280px;
  border: 15px solid #172234;
  border-radius: 8px 8px 30% 30%;
}
.explore-section .explore-layout .explore-layout-right .overlay-content .lorem-text {
  margin-left: 32px;
  font-size: 2rem;
}
.explore-section .explore-layout .explore-layout-right .overlay-content .button-area {
  display: flex;
}
.explore-section .explore-layout .explore-layout-right .overlay-content .button-area button {
  background: #7CC6F7;
  border: none;
  border-radius: 5px;
  padding: 16px 12px;
  text-transform: uppercase;
  margin-left: 56px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.explore-section .explore-layout .explore-layout-right .overlay-content .button-area button:hover {
  cursor: pointer;
  transform: translateY(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1024px) {
  .explore-section .explore-layout .explore-layout-left,
  .explore-section .explore-layout .explore-layout-right {
    flex: 1;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content,
  .explore-section .explore-layout .explore-layout-right .overlay-content {
    position: relative !important;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .image-content .img img,
  .explore-section .explore-layout .explore-layout-right .overlay-content .image-content .img img {
    width: 300px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box,
  .explore-section .explore-layout .explore-layout-right .overlay-content .media-button-box {
    right: 10%;
    bottom: 300px;
    width: 80px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container {
    width: 250px;
    margin-top: 20px;
    left: 5%;
    bottom: 5%;
    display: flex;
    justify-content: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .avatar,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details {
    align-items: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .call-title, .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .phone-number,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details .call-title,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details .phone-number {
    color: white !important;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-icon,
  .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-icon {
    display: none;
  }
  .explore-section .explore-layout .explore-layout-right .overlay-content {
    align-items: center;
  }
  .explore-section .explore-layout .explore-layout-right .overlay-content .lorem-text {
    margin: 0;
    font-size: 1.2rem;
  }
  .explore-section .explore-layout .explore-layout-right .overlay-content .button-area {
    margin-top: 20px;
  }
  .explore-section .explore-layout .explore-layout-right .overlay-content .button-area button {
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .explore-section {
    height: 300px;
  }
  .explore-section .explore-layout {
    height: 100%;
    display: flex;
  }
  .explore-section .explore-layout .explore-layout-left, .explore-section .explore-layout .explore-layout-right {
    flex: 1;
    height: 100%;
    width: 100%;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .image-content, .explore-section .explore-layout .explore-layout-right .overlay-content .image-content {
    top: -50%;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .image-content .img img, .explore-section .explore-layout .explore-layout-right .overlay-content .image-content .img img {
    width: 150px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .media-button-box, .explore-section .explore-layout .explore-layout-right .overlay-content .media-button-box {
    bottom: 10%;
    width: 60px;
    height: 60px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container {
    width: 200px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .avatar, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .avatar {
    width: 30px;
    height: 30px;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details {
    align-items: center;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .call-title, .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-details .phone-number, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details .call-title, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-details .phone-number {
    color: white !important;
  }
  .explore-section .explore-layout .explore-layout-left .overlay-content .cell-box-container .call-box .call-icon, .explore-section .explore-layout .explore-layout-right .overlay-content .cell-box-container .call-box .call-icon {
    display: none;
  }
  .explore-section .explore-layout .overlay-content {
    padding: 12px !important;
  }
}
.dealership {
  background: url("/assets/images/section_4.png") no-repeat center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dealership .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.dealership .container .elements-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.dealership .container .elements-group h3, .dealership .container .elements-group h2 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.dealership .container .elements-group .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  border-radius: 0 0 100% 100%;
  background: var(--light);
  border-top: 2px solid var(--orange);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.dealership .container .elements-group p {
  text-align: center;
}
.dealership .container .elements-group.element-group-two, .dealership .container .elements-group.element-group-four {
  flex-direction: column-reverse;
}
.dealership .container .elements-group.element-group-two .image-container, .dealership .container .elements-group.element-group-four .image-container {
  border-radius: 100% 100% 0 0;
  border-top: none;
  border-bottom: 2px solid var(--blue);
}
@media (max-width: 768px) {
  .dealership .container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 16px;
    scroll-padding-left: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .dealership .container .elements-group {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-radius: 20px;
    background: var(--light);
    padding: 24px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 260px;
  }
  .dealership .container::-webkit-scrollbar {
    display: none;
  }
}

.companies {
  padding: 0 0 80px 0;
  overflow: hidden;
}
.companies .companies-wrapper {
  background: var(--light-blue) url("/assets/images/our_company_section.png") repeat;
  display: flex;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.companies .companies-wrapper .companies-container {
  width: 90%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.companies .companies-wrapper .companies-container .title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light);
  margin: 40px 0 50px 0;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.companies .companies-wrapper .companies-container .company-card {
  background: var(--light-gray);
  width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.companies .companies-wrapper .companies-container .company-card:hover {
  transform: translateY(-5px);
}
.companies .companies-wrapper .companies-container .company-card .company-img {
  width: 100%;
  object-fit: cover;
  height: 250px;
}
.companies .companies-wrapper .companies-container .company-card .company-location {
  background: var(--orange);
  color: var(--light);
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  bottom: 15px;
  left: 20px;
  width: fit-content;
  max-width: calc(100% - 40px);
}
.companies .companies-wrapper .companies-container .company-card .company-info {
  padding: 0 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.companies .companies-wrapper .companies-container .company-card .company-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
}
.companies .companies-wrapper .companies-container .company-card .company-info .company-link {
  font-size: 1rem;
  color: #000;
  text-align: right;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.companies .companies-wrapper .companies-container .company-card .company-info .company-link:hover {
  color: var(--light-blue);
}
.companies .companies-wrapper .companies-container .company-card.card-1 {
  border-radius: 30px 10px 10px 10px;
}
.companies .companies-wrapper .companies-container .company-card.card-2 {
  border-radius: 10px;
}
.companies .companies-wrapper .companies-container .company-card.card-3 {
  border-radius: 10px 30px 10px 10px;
}
.companies .companies-wrapper .companies-container .desktop-only {
  display: block;
}
.companies .companies-wrapper .companies-container .desktop-only.company-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  bottom: -80px;
}
.companies .companies-wrapper .companies-container .mobile-only {
  display: none;
}
.companies .companies-wrapper .companies-container .glider-contain {
  width: 100%;
  margin: 0 auto;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 20px;
  padding: 20px;
  margin: 0;
  gap: 20px;
  justify-content: flex-start;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards::-webkit-scrollbar {
  display: none;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card {
  flex: 0 0 85%;
  min-width: 280px;
  max-width: 400px;
  scroll-snap-align: start;
  border-radius: 16px;
  position: static;
  bottom: auto;
  left: auto;
  margin-bottom: 0;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card:hover {
  transform: none;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card .company-img {
  height: 250px;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card .company-location {
  font-size: 0.7rem;
  padding: 6px 12px;
  bottom: 20px;
  left: 15px;
  max-width: calc(100% - 30px);
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card .company-info {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px 15px;
  gap: 8px;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card .company-info h3 {
  font-size: 1rem;
}
.companies .companies-wrapper .companies-container .glider-contain .company-cards .company-card .company-info .company-link {
  font-size: 0.9rem;
}

@media (max-width: 1400px) {
  .companies .companies-wrapper .companies-container {
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .companies {
    padding: 40px 0;
  }
  .companies .companies-wrapper {
    align-items: flex-start;
    padding: 10px 0;
  }
  .companies .companies-wrapper .companies-container {
    width: 100%;
    max-width: 100%;
  }
  .companies .companies-wrapper .companies-container .title {
    font-size: 2rem;
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
.get-dealership-form {
  background: var(--light);
  padding: 100px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.get-dealership-form h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.get-dealership-form .get-dealership-container {
  width: 70%;
  background: #F5F1F0;
  border-radius: 12px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 992px) {
  .get-dealership-form .get-dealership-container {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.get-dealership-form .get-dealership-container .form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
.get-dealership-form .get-dealership-container .form-left h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.get-dealership-form .get-dealership-container .form-left h2 .highlight {
  color: var(--orange);
}
.get-dealership-form .get-dealership-container .form-left .contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.get-dealership-form .get-dealership-container .form-left .contact-info li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.get-dealership-form .get-dealership-container .form-left .contact-info li:hover {
  background-color: var(--light-blue);
  color: var(--light);
}
.get-dealership-form .get-dealership-container .form-left .contact-info li:hover i {
  color: var(--dark);
}
.get-dealership-form .get-dealership-container .form-left .contact-info li i {
  color: var(--blue);
  padding: 10px;
  border-radius: 8px;
  margin-right: 12px;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.get-dealership-form .get-dealership-container .form-left .social-icons {
  display: flex;
  gap: 15px;
}
.get-dealership-form .get-dealership-container .form-left .social-icons a {
  color: var(--light);
  background: var(--blue);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.get-dealership-form .get-dealership-container .form-left .social-icons a:hover {
  background: rgb(55.6228813559, 143.5, 231.3771186441);
}
.get-dealership-form .get-dealership-container .form-right {
  flex: 1;
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
}
.get-dealership-form .get-dealership-container .form-right form {
  display: flex;
  flex-direction: column;
}
.get-dealership-form .get-dealership-container .form-right form .form-label {
  font-weight: bold;
  margin-bottom: 20px;
}
.get-dealership-form .get-dealership-container .form-right form .interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.get-dealership-form .get-dealership-container .form-right form .interest-tags button {
  background: var(--light-gray);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.get-dealership-form .get-dealership-container .form-right form .interest-tags button.active, .get-dealership-form .get-dealership-container .form-right form .interest-tags button:hover {
  background: var(--light-blue);
  color: var(--dark);
}
.get-dealership-form .get-dealership-container .form-right form input,
.get-dealership-form .get-dealership-container .form-right form textarea {
  padding: 12px 10px;
  border: none;
  border-bottom: 2px solid #ccc;
  margin-bottom: 30px;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
  background: transparent;
  transition: 0.3s ease;
}
.get-dealership-form .get-dealership-container .form-right form input:focus,
.get-dealership-form .get-dealership-container .form-right form textarea:focus {
  border-color: var(--light-blue);
}
.get-dealership-form .get-dealership-container .form-right form .submit-btn {
  width: 250px;
  background-color: var(--light-blue);
  color: var(--dark);
  border: none;
  padding: 20px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.get-dealership-form .get-dealership-container .form-right form .submit-btn:hover {
  background-color: var(--blue);
}

@media (max-width: 768px) {
  .get-dealership-form {
    padding: 80px 10px;
  }
  .get-dealership-form h1 {
    font-size: 2rem;
    text-align: center;
  }
  .get-dealership-form .get-dealership-container {
    width: 100%;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }
  .get-dealership-form .get-dealership-container .form-left,
  .get-dealership-form .get-dealership-container .form-right {
    flex: 1 1 100%;
    width: 100%;
  }
  .get-dealership-form .get-dealership-container .form-left {
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .get-dealership-form .get-dealership-container .form-left h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    width: 100%;
  }
  .get-dealership-form .get-dealership-container .form-left .contact-info {
    gap: 16px;
  }
  .get-dealership-form .get-dealership-container .form-left .contact-info li {
    font-size: 0.9rem;
  }
  .get-dealership-form .get-dealership-container .form-left .contact-info li i {
    margin-right: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .get-dealership-form .get-dealership-container .form-left .social-icons {
    justify-content: center;
  }
  .get-dealership-form .get-dealership-container .form-right {
    padding: 20px;
  }
  .get-dealership-form .get-dealership-container .form-right form .form-label {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .get-dealership-form .get-dealership-container .form-right form .interest-tags {
    gap: 10px;
    justify-content: center;
  }
  .get-dealership-form .get-dealership-container .form-right form .interest-tags button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .get-dealership-form .get-dealership-container .form-right form input,
  .get-dealership-form .get-dealership-container .form-right form textarea {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .get-dealership-form .get-dealership-container .form-right form .submit-btn {
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    font-size: 1rem;
  }
}
.our-team {
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #F1F4FB;
  align-items: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.our-team .our-team-top-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  align-items: center;
  gap: 16px;
}
.our-team .our-team-top-area h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.our-team .our-team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 150px;
}
.our-team .our-team-cards .team-card-slider-track {
  display: flex;
  gap: 20px;
}
.our-team .our-team-cards .team-card-slider-track .our-team-card {
  width: 300px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  background: var(--light);
  transition: transform 0.3s ease-in;
  border-radius: 20px;
}
.our-team .our-team-cards .team-card-slider-track .our-team-card:hover {
  transform: translateY(-10px);
}
.our-team .our-team-cards .team-card-slider-track .our-team-card .card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.our-team .our-team-cards .team-card-slider-track .our-team-card .card-content {
  padding: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.our-team .our-team-cards .team-card-slider-track .our-team-card .card-content .card-title {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #333;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.our-team .our-team-cards .team-card-slider-track .our-team-card .card-content .card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .our-team {
    height: auto;
    padding: 40px 0;
  }
  .our-team .our-team-top-area {
    padding: 0 16px;
  }
  .our-team .our-team-cards {
    display: block;
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 0;
    margin-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .our-team .our-team-cards::-webkit-scrollbar {
    display: none;
  }
  .our-team .our-team-cards .team-card-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 20px;
    min-width: max-content;
    align-items: flex-start;
  }
  .our-team .our-team-cards .our-team-card {
    flex: 0 0 85%;
    max-width: 300px;
    scroll-snap-align: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-right: 16px;
  }
  .our-team .our-team-cards .our-team-card:hover {
    transform: none;
  }
  .our-team .our-team-cards .our-team-card .card-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .our-team .our-team-cards .our-team-card .card-content {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.our-team-next {
  height: 400px;
  padding: 40px 0;
}
.our-team-next .outlaw {
  width: 70%;
  height: 100%;
  margin: auto;
}
.our-team-next .outlaw .some-other-frame {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.our-team-next .outlaw .some-other-frame .background-overlay {
  position: absolute;
  height: 400px;
  width: 100%;
  top: -150px;
  border-radius: 16px;
}
.our-team-next .outlaw .some-other-frame .background-overlay.background-overlay-color {
  background-color: var(--blue);
}
.our-team-next .outlaw .some-other-frame .background-overlay.background-overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-team-next .outlaw .some-other-frame .left-area {
  padding: 0 24px;
  flex: 1;
  z-index: 1;
  color: var(--light);
}
.our-team-next .outlaw .some-other-frame .left-area h1 {
  font-size: 2.5rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.our-team-next .outlaw .some-other-frame .left-area p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.our-team-next .outlaw .some-other-frame .right-area {
  padding: 0 24px;
  flex: 1;
  z-index: 1;
}
.our-team-next .outlaw .some-other-frame .right-area .long-button {
  width: 100%;
  padding: 24px 32px;
  background: var(--light);
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: "Farro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.our-team-next .outlaw .some-other-frame .right-area .long-button .chip-button {
  background: var(--orange);
  color: var(--light);
  padding: 16px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: transform 0.3s ease-in;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.our-team-next .outlaw .some-other-frame .right-area .long-button .chip-button:hover {
  transform: scale(1.1);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .our-team-next .outlaw {
    width: 90%;
  }
  .our-team-next .outlaw .some-other-frame .left-area h1 {
    font-size: 1.6rem;
  }
  .our-team-next .outlaw .some-other-frame .long-button {
    flex-direction: column;
    align-items: flex-start;
  }
  .our-team-next .outlaw .some-other-frame .long-button .chip-button {
    align-self: flex-end;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .our-team-next {
    padding: 60px 0;
  }
  .our-team-next .outlaw {
    width: 95%;
  }
  .our-team-next .outlaw .some-other-frame {
    flex-direction: column;
  }
  .our-team-next .outlaw .some-other-frame .background-overlay {
    top: 0;
    height: 100%;
    border-radius: 12px;
  }
  .our-team-next .outlaw .some-other-frame .left-area,
  .our-team-next .outlaw .some-other-frame .right-area {
    padding: 15px 16px;
    flex: unset;
    text-align: center;
  }
  .our-team-next .outlaw .some-other-frame .left-area h1 {
    font-size: 1.4rem;
  }
  .our-team-next .outlaw .some-other-frame .long-button {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .our-team-next .outlaw .some-other-frame .long-button .chip-button {
    align-self: center;
  }
}

.team-highlight {
  overflow: hidden;
  position: relative;
  height: 750px;
  width: 100%;
}
.team-highlight .team-highlight-container {
  max-width: 70%;
  margin: auto;
  display: flex;
}
.team-highlight .team-highlight-container .highlight-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-left {
  flex: 1;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-left .highlight-img {
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.team-highlight .team-highlight-container .highlight-layout .highlight-left .highlight-img img {
  width: 100%;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right {
  flex: 1;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlight-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-stats {
  flex: 1;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-stats .stat-number {
  font-size: 2rem;
  color: var(--light-blue);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  margin: 0;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-stats .stat-label {
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-benefits {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-benefits li {
  color: #333;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlights .highlight-benefits li i {
  color: var(--orange);
  margin-right: 10px;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlight-btn {
  display: inline-block;
  background-color: var(--orange);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--light);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.team-highlight .team-highlight-container .highlight-layout .highlight-right .highlight-btn:hover {
  background-color: rgb(219.3, 87.72, 0);
}
.team-highlight .highlight-character {
  position: absolute;
  width: 0;
  height: 0;
  right: -150px;
  bottom: 50px;
  justify-content: center;
  display: none;
  align-items: center;
}
.team-highlight .highlight-character .character-img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .team-highlight {
    height: auto;
    padding: 60px 0;
  }
  .team-highlight .team-highlight-container {
    max-width: 90%;
  }
  .team-highlight .highlight-character {
    width: 300px;
    right: -100px;
    bottom: 30px;
  }
  .team-highlight .highlight-layout .highlight-left,
  .team-highlight .highlight-layout .highlight-right {
    flex: 1 1 100%;
  }
  .team-highlight .highlight-layout .highlight-img {
    width: 100%;
  }
  .team-highlight .highlight-layout .highlight-right .highlight-desc {
    font-size: 0.9rem;
  }
  .team-highlight .highlight-layout .highlight-right .highlights {
    flex-direction: column;
    gap: 16px;
  }
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-stats,
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-benefits {
    width: 100%;
  }
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-benefits {
    gap: 8px;
  }
  .team-highlight .highlight-layout .highlight-right .highlight-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .team-highlight {
    padding: 40px 0;
  }
  .team-highlight .team-highlight-container {
    width: 95%;
  }
  .team-highlight .highlight-layout {
    flex-direction: column;
    align-items: center;
  }
  .team-highlight .highlight-layout .highlight-left,
  .team-highlight .highlight-layout .highlight-right {
    width: 100%;
    text-align: center;
  }
  .team-highlight .highlight-layout .highlight-right .highlight-desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .team-highlight .highlight-layout .highlight-right .highlights {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-stats,
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-benefits {
    width: 100%;
    text-align: center;
  }
  .team-highlight .highlight-layout .highlight-right .highlights .highlight-benefits li {
    justify-content: center;
  }
  .team-highlight .highlight-layout .highlight-right .highlight-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  .team-highlight .highlight-character {
    display: none;
  }
}
.benefits {
  background: url("/assets/images/loving-hens.webp") center/cover no-repeat;
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: 80px 0;
  transition: background-image 0.6s ease-in-out;
}
.benefits .benefits-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}
.benefits .benefits-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  position: absolute;
}
.benefits .benefits-content .benefits-award {
  position: relative;
  top: 80px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--orange);
  font-weight: bold;
  font-size: 0.9rem;
  opacity: 0.5;
  letter-spacing: 1px;
}
.benefits .benefits-content .benefits-title {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  position: relative;
  top: 70px;
  color: transparent;
  -webkit-text-stroke: 2px var(--light);
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.benefits .benefits-content .benefits-subtitle {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  position: relative;
  top: 55px;
  font-size: 52px;
  font-weight: 800;
  color: var(--light);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.benefits .benefits-content .benefits-btn {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  top: 60px;
  padding: 25px 25px;
  background-color: var(--light-blue);
  color: var(--dark);
  border: none;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.benefits .benefits-content .benefits-btn:hover {
  background-color: #0056b3;
}
.benefits .benefits-nav {
  position: absolute;
  top: 450px;
  transform: translateY(-50%);
  background-color: var(--light);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: black;
}
.benefits .benefits-nav.left {
  left: 15%;
}
.benefits .benefits-nav.right {
  right: 15%;
}

@media (max-width: 1200px) {
  .benefits .benefits-content .benefits-title {
    font-size: 60px;
    top: 60px;
  }
  .benefits .benefits-content .benefits-subtitle {
    font-size: 40px;
    top: 30px;
  }
  .benefits .benefits-content .benefits-award {
    top: 60px;
    font-size: 0.85rem;
  }
  .benefits .benefits-content .benefits-btn {
    padding: 20px 20px;
    font-size: 0.95rem;
    top: 30px;
  }
  .benefits .benefits-nav {
    top: 400px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .benefits {
    height: 400px;
    width: 100%;
  }
  .benefits .benefits-content {
    position: relative;
  }
  .benefits .benefits-content .benefits-title {
    font-size: 42px;
    top: 50px;
    -webkit-text-stroke: 1px var(--light);
  }
  .benefits .benefits-content .benefits-subtitle {
    font-size: 28px;
    top: 40px;
  }
  .benefits .benefits-content .benefits-award {
    top: 60px;
    font-size: 0.8rem;
  }
  .benefits .benefits-content .benefits-btn {
    top: 40px;
    padding: 15px 18px;
    font-size: 0.9rem;
  }
  .benefits .benefits-nav {
    top: 50%;
    font-size: 20px;
  }
  .benefits .benefits-nav.left {
    left: 5%;
  }
  .benefits .benefits-nav.right {
    right: 5%;
  }
}
@media (max-width: 480px) {
  .benefits .benefits-content .benefits-title {
    font-size: 32px;
    top: 45px;
  }
  .benefits .benefits-content .benefits-subtitle {
    font-size: 20px;
    top: 40px;
  }
  .benefits .benefits-content .benefits-btn {
    font-size: 0.85rem;
    padding: 12px 16px;
    top: 40px;
  }
}
.home-contact-section {
  padding: 80px 0;
  overflow: hidden;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.home-contact-section .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.home-contact-section .form-group {
  display: flex;
  flex-direction: column;
}
.home-contact-section .form-group input,
.home-contact-section .form-group select,
.home-contact-section .form-group textarea {
  padding: 15px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}
.home-contact-section .form-group select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center;
  background-size: 18px;
}
.home-contact-section .form-group textarea {
  resize: none;
  border-radius: 15px;
}
.home-contact-section .form-full {
  grid-column: span 2;
}
.home-contact-section .center {
  display: flex;
  justify-content: center;
}
.home-contact-section .btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.home-contact-section .btn-area .btn-submit {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  padding: 12px 25px;
  background-color: var(--light-blue);
  color: var(--light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 200px;
}
.home-contact-section .btn-area .btn-submit:hover {
  background-color: rgb(74.9142857143, 177.2357142857, 244.0857142857);
}
.home-contact-section .title {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.home-contact-section .title h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

@media (max-width: 768px) {
  .home-contact-section {
    padding: 40px 0;
  }
  .home-contact-section .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .home-contact-section .form-full {
    grid-column: span 1;
  }
  .home-contact-section .title h2 {
    font-size: 22px;
  }
  .home-contact-section .btn-area .btn-submit {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
  }
  .home-contact-section .form-group input,
  .home-contact-section .form-group select,
  .home-contact-section .form-group textarea {
    font-size: 15px;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 480px) {
  .home-contact-section .contact-form {
    padding: 15px;
    gap: 12px;
  }
  .home-contact-section .btn-submit {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media (max-width: 992px) {
  .dealership-container,
  .benefits-container {
    grid-template-columns: 1fr;
  }
  .benefits-img {
    order: -1;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light);
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  nav ul.show {
    display: flex;
  }
  nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    display: block;
    padding: 15px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: span 1;
  }
}
.hero-section {
  background: url("/assets/images/product_page/loving-hens.webp") center/cover no-repeat;
  height: 1000px;
  position: relative;
  overflow: hidden;
}
.hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section h1 {
  font-size: 3.5rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}
.hero-section .breadcrumb {
  margin-top: 1rem;
  font-size: 1rem;
}
.hero-section .breadcrumb .breadcrumb-item a {
  opacity: 0.9;
}
.hero-section .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
  opacity: 1;
}
.hero-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
  content: "»";
  margin: 0 0.5rem;
}
@media (max-width: 1200px) {
  .hero-section {
    height: 800px;
  }
  .hero-section h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .hero-section {
    height: 600px;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section .breadcrumb {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section .breadcrumb {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    height: 300px;
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-section .breadcrumb {
    font-size: 0.75rem;
  }
}

.product-hero-section {
  position: relative;
  background-color: var(--light);
  padding: 100px 0 40px;
  text-align: center;
  overflow: hidden;
}
.product-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: none;
}
.product-hero-section .container {
  position: relative;
  z-index: 2;
}
.product-hero-section .container .row {
  display: flex;
}
.product-hero-section .container .row .container-left {
  display: flex;
  flex-direction: column;
}
.product-hero-section .container .row .container-left .orange-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-hero-section .container .row .container-left .orange-head .img img {
  width: 20px;
  height: 30px;
}
.product-hero-section .container .row .container-left .orange-head p {
  text-align: center;
  margin-top: 10px;
  color: var(--orange);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.product-hero-section .container .row .container-left h1 {
  font-size: 2.5rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.product-hero-section .container .row .container-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-section .container .row .container-right p {
  font-size: 1rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .product-hero-section .container-left h1 {
    font-size: 2rem;
  }
  .product-hero-section .container-right {
    text-align: center;
    margin-top: 1rem;
  }
  .product-hero-section .container-right p {
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .product-hero-section .container-left {
    align-items: center;
  }
  .product-hero-section .container-right p {
    text-align: center;
  }
}

.btn-pills-1 {
  background: var(--light-blue);
}

.product-section {
  padding: 4rem 10px;
  overflow: hidden;
}
.product-section .button-slider {
  padding: 6px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0.75rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-section .button-slider button {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  width: 150px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  white-space: nowrap;
}
.product-section .button-slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 576px) {
  .product-section .button-slider {
    padding-left: 12px;
    gap: 0.5rem;
  }
  .product-section .button-slider button {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
.product-section .product-img {
  height: 420px;
  object-fit: contain;
  margin-bottom: -1rem;
  width: 100%;
}
.product-section .card {
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.product-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.product-section .card .card-body {
  padding: 1.5rem;
}
.product-section .card .card-body .shop-now {
  color: var(--blue);
}
.product-section .card .card-body h5 {
  font-size: 1.2rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.product-section .card .card-body p {
  font-size: 0.9rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.product-section .load-btn {
  background: var(--light-blue);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
@media (max-width: 992px) {
  .product-section .product-img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .product-section .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  .product-section .card-body {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .product-section .product-img {
    height: 250px;
  }
  .product-section .card-body {
    padding: 1rem;
  }
  .product-section .btn {
    display: block;
    width: 100%;
  }
}

.contact-section {
  padding: 80px 0;
}
.contact-section .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 1rem;
}
.contact-section .title .title-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-section .title .title-head h6 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
}
.contact-section .title .title-head .img img {
  max-width: 40px;
  height: auto;
}
.contact-section .title h1 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .contact-section .title h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .contact-section .title h1 {
    font-size: 3rem;
  }
}
.contact-section .title p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 5px;
  max-width: 90%;
  width: 100%;
  font-size: 0.95rem;
}
@media (min-width: 576px) {
  .contact-section .title p {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .contact-section .title p {
    max-width: 600px;
    font-size: 1rem;
  }
}
.contact-section .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .contact-section .contact-form {
    padding: 30px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .contact-section .contact-form {
    padding: 20px;
  }
}
.contact-section .form-group {
  display: flex;
  flex-direction: column;
}
.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 15px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
  width: 100%;
}
.contact-section .form-group select {
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 15px center;
  background-size: 18px;
}
.contact-section .form-group textarea {
  resize: none;
  border-radius: 15px;
}
.contact-section .form-full {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .contact-section .form-full {
    grid-column: span 1;
  }
}
.contact-section .center {
  display: flex;
  justify-content: center;
}
.contact-section .btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.contact-section .btn-submit {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  padding: 12px 25px;
  background-color: var(--light-blue);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 200px;
  text-align: center;
}
.contact-section .btn-submit:hover {
  background-color: #0056b3;
}
.contact-section .title {
  text-align: center;
  margin-bottom: 30px;
}
.contact-section .title h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-categories-section {
  background: var(--light-gray);
}
.blog-categories-section .categories-content-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-categories-section .categories-content-area .some-logo {
  position: absolute;
  top: -100px;
  left: calc(50% - 75px);
}
.blog-categories-section .categories-content-area .some-logo img {
  width: 150px;
}
.blog-categories-section .categories-content-area h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-bottom: 1rem;
}
.blog-categories-section .categories-content-area p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
}
.blog-categories-section .categories-content-area .categories-bar {
  display: flex;
  flex: 1;
}
.blog-categories-section .categories-content-area .categories-bar .categories-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.blog-categories-section .categories-content-area .categories-bar .categories-left .category {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.blog-categories-section .categories-content-area .categories-bar .categories-left .category:hover {
  cursor: pointer;
}
.blog-categories-section .categories-content-area .categories-bar .categories-left .fa-magnifying-glass:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .blog-categories-section .categories-content-area .categories-bar .categories-left {
    font-size: 0.7rem;
    gap: 12px;
  }
}

.blogs-page-features {
  padding: 40px 0;
}
.blogs-page-features .blog-card {
  width: 100%;
}
.blogs-page-features .blog-card .card-image-container {
  width: 100%;
  height: 500px;
}
.blogs-page-features .blog-card .card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(88, 40, 160, 0.3);
}
.blogs-page-features .blog-card h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.blogs-page-features .blog-card p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.blogs-page-features .blog-card .chips .chip {
  background: var(--light-gray);
  border: 1px solid #D9DBDF;
  padding: 8px 16px;
  border-radius: 24px;
  transition: background 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.blogs-page-features .blog-card .chips .chip:hover {
  cursor: pointer;
  background: white;
}
.blogs-page-features .blog-card .blog-publish-date {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}
.blogs-page-features .blog-card .blog-publish-date .blog-publish-date-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--dark);
  border-radius: 100%;
}

.blog-explore-section {
  padding: 40px 0;
}
.blog-explore-section .blog-explore-layout h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.blog-explore-section .blog-explore-layout .blog-recent-card {
  width: 100%;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .blog-recent-card-image-container {
  width: 100%;
  height: 400px;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .blog-recent-card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(88, 40, 160, 0.3);
}
.blog-explore-section .blog-explore-layout .blog-recent-card h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.blog-explore-section .blog-explore-layout .blog-recent-card p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .chips .chip {
  background: var(--light-gray);
  border: 1px solid #D9DBDF;
  padding: 8px 16px;
  border-radius: 24px;
  transition: background 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .chips .chip:hover {
  cursor: pointer;
  background: white;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .blog-publish-date {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
}
.blog-explore-section .blog-explore-layout .blog-recent-card .blog-publish-date .blog-publish-date-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--dark);
  border-radius: 100%;
}
.blog-explore-section .blog-explore-layout .load-more-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-explore-section .blog-explore-layout .load-more-button-container .load-more-button {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  background: var(--light-blue);
  border-radius: 24px;
  font-weight: bold;
  border: none;
  padding: 12px 56px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.blog-explore-section .blog-explore-layout .load-more-button-container .load-more-button:hover {
  cursor: pointer;
  background: rgb(74.9142857143, 177.2357142857, 244.0857142857);
  transform: scale(1.05);
}

.about-company-section {
  overflow: hidden;
}
.about-company-section .title {
  display: flex;
  gap: 10px;
  padding: 10px 4px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-company-section .title p {
  padding: 3px 0;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-company-section .section-tag {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-blue);
}
.about-company-section .section-title {
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.about-company-section .nav-tabs {
  border-bottom: 1px solid #ddd;
}
.about-company-section .nav-tabs .nav-link {
  color: #000;
  font-weight: 500;
  border: none;
  background: none;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-company-section .nav-tabs .nav-link.active {
  color: #000;
  background: #C3D6E1;
  border-bottom: 3px solid #C3D6E1;
}
.about-company-section .tab-pane {
  border-left: 3px solid var(--light-blue);
  border-bottom: 3px solid var(--light-blue);
  padding: 15px;
  font-size: 0.95rem;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #555;
}
.about-company-section .btn {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  background-color: var(--light-blue);
  transition: background-color 0.3s ease-in;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.about-company-section .btn:hover {
  background-color: rgb(75.9352517986, 177.0863309353, 244.0647482014);
}
.about-company-section .phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 50%;
  transform: rotate(270deg);
  color: var(--orange);
  border: 2px solid var(--light-blue);
  font-size: 1.2rem;
}
.about-company-section .want {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.about-company-section .number {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.about-company-section .experience-image {
  position: relative;
  display: inline-block;
}
.about-company-section .experience-image img {
  position: relative;
  z-index: 2;
  border-radius: 0 0 0 15px;
}
.about-company-section .experience-image::after {
  content: "";
  position: absolute;
  border-radius: 2rem;
  top: 35px;
  left: 35px;
  width: 100%;
  height: 100%;
  background-color: #FFF0E6;
  z-index: 1;
}
.about-company-section .exp-badge {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  z-index: 10;
  bottom: 0;
  left: 62px;
  background: var(--light);
  border-radius: 0 12px 0 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Poppins", sans-serif;
  width: 70%;
  max-width: 500px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.about-company-section .exp-badge .exp-number {
  font-size: 4rem;
  color: var(--orange);
  font-weight: 800;
  line-height: 1;
}
.about-company-section .exp-badge .exp-text {
  line-height: 0.8;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.about-company-section .exp-badge .exp-text .works-of {
  font-size: 1rem;
  color: var(--light-blue);
  font-weight: 500;
  text-align: left;
}
.about-company-section .exp-badge .exp-text .experience-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-blue);
  display: inline-block;
}
@media (max-width: 991.98px) {
  .about-company-section .exp-badge {
    left: 40px;
    padding: 10px 30px;
    gap: 20px;
    width: 80%;
  }
  .about-company-section .exp-badge .exp-number {
    font-size: 3rem;
  }
  .about-company-section .exp-badge .exp-text .works-of {
    font-size: 0.85rem;
  }
  .about-company-section .exp-badge .exp-text .experience-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .about-company-section {
    left: 20px;
    padding: 8px 20px;
    gap: 15px;
    width: 90%;
  }
  .about-company-section .section-title {
    font-size: 1.6rem;
  }
  .about-company-section .experience-image::after {
    content: "";
    position: absolute;
    border-radius: 2rem;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: #FFF0E6;
    z-index: 1;
  }
  .about-company-section .exp-badge {
    left: 12px;
  }
  .about-company-section .exp-number {
    font-size: 2.2rem;
  }
  .about-company-section .exp-text .works-of {
    font-size: 0.75rem;
  }
  .about-company-section .exp-text .experience-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .about-company-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 10px;
    width: 100%;
    left: 0;
  }
  .about-company-section .exp-number {
    font-size: 2rem;
  }
  .about-company-section .exp-text {
    align-items: flex-start;
  }
  .about-company-section .exp-text .works-of {
    font-size: 0.7rem;
  }
  .about-company-section .exp-text .experience-text {
    font-size: 1rem;
  }
}

.what-we-do-section {
  background-color: var(--light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.what-we-do-section .container-fluid {
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.what-we-do-section .container-fluid .side-most-img {
  padding: 0;
  display: flex;
  width: 250px;
  height: 300px;
  position: relative;
  margin-top: 15%;
}
.what-we-do-section .three-img-container {
  padding-left: 300px;
  display: flex;
  width: 100%;
}
.what-we-do-section .image-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
}
.what-we-do-section .image-stack .image {
  position: absolute;
  transition: all 1s ease;
  border-radius: 20px;
}
.what-we-do-section .image-stack .image:hover {
  transform: scale(1.1);
}
.what-we-do-section .image-stack .image-1 {
  bottom: 0;
  left: 0;
  width: 70%;
}
.what-we-do-section .image-stack .image-2 {
  z-index: 2;
  bottom: -150px;
  left: -10%;
  width: 50%;
  transform: translate(-20%, 20%);
}
.what-we-do-section .image-stack .image-3 {
  z-index: 3;
  bottom: -250px;
  right: 40%;
  width: 50%;
  transform: translate(20%, 20%);
}
.what-we-do-section .image-stack img {
  border-radius: 1rem;
}
.what-we-do-section .main-title {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.what-we-do-section p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.what-we-do-section .custom-list {
  list-style: none;
  padding-left: 10px;
}
.what-we-do-section .custom-list li {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}
.what-we-do-section .custom-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--orange);
  font-size: 0.8rem;
}
.what-we-do-section .btn-primary {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--dark);
  background-color: var(--light-blue);
  border: none;
  font-weight: 600;
  transition: all 0.5s ease;
}
.what-we-do-section .btn-primary:hover {
  background-color: rgb(74.9142857143, 177.2357142857, 244.0857142857);
}
@media (max-width: 767.98px) {
  .what-we-do-section .side-most-img {
    display: none !important;
  }
  .what-we-do-section .three-img-container {
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }
  .what-we-do-section .three-img-container .image-stack {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }
  .what-we-do-section .three-img-container .image-stack .image {
    position: relative;
    transform: none;
    margin-bottom: 20px;
  }
  .what-we-do-section .three-img-container .image-stack .image-2 {
    bottom: 40px;
    left: -40px;
  }
  .what-we-do-section .three-img-container .image-stack .image-3 {
    top: -80px;
    right: -40px;
  }
  .what-we-do-section .three-img-container .contents {
    padding: 0 16px;
  }
  .what-we-do-section .three-img-container .contents ul {
    padding-left: 1rem;
  }
}

.cta-banner {
  border: 2px dashed #d0d0d0;
  border-radius: 0 999px 999px 0;
  background-color: var(--light);
  width: 700px;
  margin: 0 auto;
}
.cta-banner .cta-text {
  text-align: center;
  flex: 1;
  font-size: 0.95rem;
  padding: 0 1rem;
  color: #000;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cta-banner .btn-cta {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background-color: var(--light-blue);
  color: var(--dark);
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0 999px 999px 0;
  white-space: nowrap;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-banner .btn-cta:hover {
  background-color: rgb(74.9142857143, 177.2357142857, 244.0857142857);
  color: var(--light);
}
@media (max-width: 768px) {
  .cta-banner {
    width: 100%;
    flex-direction: column;
    border-radius: 1.5rem;
    padding-bottom: 10px;
  }
  .cta-banner .cta-text {
    padding: 0.8rem 0;
    text-align: center;
  }
  .cta-banner .btn-cta {
    width: 70%;
    text-align: center;
    border-radius: 1rem;
  }
}
@media (max-width: 480px) {
  .cta-banner {
    width: 90%;
    padding: 1rem 1.2rem;
  }
  .cta-banner .btn-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  .cta-banner .cta-text {
    font-size: 0.8rem;
  }
}

.our-team-display-section {
  background: var(--light);
  margin: 0;
}
.our-team-display-section .our-team-top-area {
  background: var(--light-gray);
  width: 100%;
  height: 350px;
}
.our-team-display-section .our-team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  height: 400px;
}
.our-team-display-section .our-team-cards .our-team-card {
  overflow: hidden;
  width: 350px;
  position: relative;
  bottom: 250px;
  transition: transform 0.5s ease;
}
.our-team-display-section .our-team-cards .our-team-card:hover {
  transform: translateY(-10px);
}
.our-team-display-section .our-team-cards .our-team-card .card-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.our-team-display-section .our-team-cards .our-team-card .card-content {
  background: var(--light-gray);
  padding: 20px;
  width: 90%;
  border-bottom-left-radius: 30px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.our-team-display-section .our-team-cards .our-team-card .card-content .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.our-team-display-section .our-team-cards .our-team-card .card-content .card-text {
  font-size: 0.9rem;
  color: #777;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .our-team-display-section .our-team-top-area {
    display: none;
  }
  .our-team-display-section .our-team-cards {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 16px;
    padding: 20px 20px;
    gap: 16px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .our-team-display-section .our-team-cards::-webkit-scrollbar {
    display: none;
  }
  .our-team-display-section .our-team-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: static;
    bottom: 0;
    top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .our-team-display-section .our-team-card .card-image {
    object-fit: contain;
  }
}

.about-blogs {
  overflow: hidden;
}
.about-blogs .blogs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 20px 20px;
  margin-bottom: 3%;
}
.about-blogs .blogs-container .blog-title h1 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.about-blogs .blogs-container .blog-content {
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.about-blogs .blogs-container .blog-content .blog-card {
  width: 40%;
}
.about-blogs .blogs-container .blog-content .blog-card h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.about-blogs .blogs-container .blog-content .blog-card .card-image-container {
  width: 100%;
  height: 350px;
}
.about-blogs .blogs-container .blog-content .blog-card .card-image-container img {
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 20px rgba(88, 40, 160, 0.3);
}
.about-blogs .blogs-container .blog-content .blog-card .chips .chip {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background: var(--light);
  border: 1px solid var(--light-gray);
  padding: 8px 16px;
  border-radius: 24px;
  transition: background 0.3s ease;
}
.about-blogs .blogs-container .blog-content .blog-card .chips .chip:hover {
  cursor: pointer;
  background: white;
}
.about-blogs .blogs-container .blog-content .blog-card .blog-publish-date {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
}
.about-blogs .blogs-container .blog-content .blog-card .blog-publish-date .blog-publish-date-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: #7E7F81;
  border-radius: 100%;
}

@media (max-width: 1024px) {
  .about-blogs .blogs-container {
    padding: 16px;
  }
  .about-blogs .blogs-container .blog-content {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .about-blogs .blogs-container .blog-content .blog-card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .about-blogs .blogs-container .blog-content .blog-card .card-image-container {
    height: 300px;
  }
  .about-blogs .blogs-container .blog-content .blog-card .chips .chip {
    padding: 6px 10px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .about-blogs .blogs-container .blog-content {
    flex-direction: column;
    align-items: center;
  }
  .about-blogs .blogs-container .blog-content .blog-card {
    margin-bottom: 1.5rem;
  }
  .about-blogs .blogs-container .blog-content .blog-card h3 {
    font-size: 1.1rem;
  }
  .about-blogs .blogs-container .blog-content .blog-card p {
    font-size: 0.95rem;
  }
  .about-blogs .blogs-container .blog-content .blog-card .card-image-container {
    height: 220px;
    width: 100%;
  }
  .about-blogs .blogs-container .blog-content .blog-card .card-image-container img {
    object-fit: cover;
    border-radius: 10px;
  }
  .about-blogs .blogs-container .blog-content .blog-card .chips {
    flex-wrap: wrap;
  }
  .about-blogs .blogs-container .blog-content .blog-card .chips .chip {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  .about-blogs .blogs-container .blog-content .blog-card .blog-author-name,
  .about-blogs .blogs-container .blog-content .blog-card .blog-publish-date {
    font-size: 0.85rem;
  }
}
.faq-section {
  background: var(--light);
}
.faq-section .faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-section .faq-top {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px 15%;
}
.faq-section .faq-top .titles {
  display: flex;
  flex-direction: column;
  flex: 2;
}
.faq-section .faq-top .titles .sub-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 600;
}
.faq-section .faq-top .titles .sub-title .faq-subtitle {
  color: var(--orange);
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
}
.faq-section .faq-top .titles .faq-heading {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.faq-section .faq-top .titles .faq-heading span {
  color: #000;
}
.faq-section .faq-top p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  flex: 1;
  padding: 20px;
}
.faq-section .faq-top .faq-desc {
  margin-top: 3rem;
  color: #666;
  font-size: 1rem;
}
.faq-section .faq-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.faq-section .faq-bottom .faq-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 15%;
}
.faq-section .faq-bottom .faq-images .faq-main-img {
  width: 450px;
  height: 500px;
  border-radius: 80px;
}
.faq-section .faq-bottom .faq-images .faq-sub-img {
  position: relative;
  bottom: 200px;
  right: 50px;
  width: 400px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-radius: 140% 140% 0 0;
  object-fit: cover;
}
.faq-section .faq-bottom .accordion {
  flex: 1;
  width: 100%;
  padding-right: 15%;
}
.faq-section .faq-bottom .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0;
  margin-bottom: 1.5rem;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-header {
  padding: 0;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  color: var(--orange);
  font-weight: 900;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "-";
  font-weight: 900;
  color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-header .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.faq-section .faq-bottom .accordion .accordion-item .accordion-body {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0.6rem 0 1rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .faq-section .faq-top {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }
  .faq-section .faq-top .faq-desc {
    padding: 0 25%;
  }
  .faq-section .faq-bottom {
    flex-direction: column;
  }
  .faq-section .faq-bottom .faq-images {
    padding: 0;
    align-items: center;
  }
  .faq-section .faq-bottom .faq-images .faq-main-img {
    width: 400px;
    height: 500px;
    border-radius: 80px;
  }
  .faq-section .faq-bottom .faq-images .faq-sub-img {
    position: relative;
    bottom: 200px;
    right: 50px;
    width: 350px;
  }
  .faq-section .faq-bottom .accordion {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-wrapper {
    padding: 0;
  }
  .faq-section .faq-wrapper .faq-top {
    flex-direction: column;
    align-items: center;
  }
  .faq-section .faq-wrapper .faq-top .faq-heading {
    font-size: 2rem !important;
  }
  .faq-section .faq-wrapper .faq-top .faq-desc {
    padding: 0 12px;
  }
  .faq-section .faq-wrapper .faq-bottom .faq-images {
    padding: 0;
    align-items: center;
  }
  .faq-section .faq-wrapper .faq-bottom .faq-images .faq-main-img {
    width: 100%;
  }
  .faq-section .faq-wrapper .faq-bottom .faq-images .faq-sub-img {
    position: relative;
    bottom: 100px;
    right: 30px;
    width: 80%;
  }
  .faq-section .faq-wrapper .faq-bottom .accordion {
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .faq-section .faq-bottom .faq-images .faq-main-img {
    width: 300px;
    height: 400px;
  }
  .faq-section .faq-bottom .faq-images .faq-sub-img {
    width: 250px;
  }
}

.form-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  padding: 10px 15px;
}
.form-container .form-wrapper {
  background: var(--light-gray);
  width: 100%;
  max-width: 800px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.form-container .form-wrapper .form-title {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-container .form-wrapper .form-subtitle {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2rem;
}
.form-container .styled-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-container .styled-form .form-group {
  display: flex;
  gap: 1rem;
}
.form-container .styled-form .form-group input,
.form-container .styled-form .form-group select,
.form-container .styled-form .form-group textarea {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  flex: 1;
  padding: 12px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 0.95rem;
}
.form-container .styled-form .form-group select {
  appearance: none;
  background-color: var(--light);
  padding: 12px 15px;
  font-size: 0.95rem;
  color: #333;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.form-container .styled-form .form-group select:hover {
  border-color: #888;
}
.form-container .styled-form .full {
  flex-direction: column;
}
.form-container .styled-form .full textarea {
  width: 100%;
  border-radius: 12px;
}
.form-container .styled-form .center {
  justify-content: center;
  align-items: center;
}
.form-container .styled-form .btn-submit {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  padding: 10px 30px;
  background: var(--light-blue);
  color: var(--dark);
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}
.form-container .styled-form .btn-submit:hover {
  background: rgb(74.9142857143, 177.2357142857, 244.0857142857);
}
@media (max-width: 991px) {
  .form-container .form-wrapper {
    margin-top: 50px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .form-container .form-wrapper {
    padding: 20px;
  }
  .form-container .styled-form .form-group {
    flex-direction: column;
  }
  .form-container .styled-form .form-group input,
  .form-container .styled-form .form-group select {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .form-container .form-wrapper {
    padding: 15px;
  }
  .form-container .form-title {
    font-size: 1.2rem;
  }
  .form-container .form-subtitle {
    font-size: 0.8rem;
  }
  .form-container .btn-submit {
    width: 100%;
  }
}

.product-profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}
.product-profile-container .product-profile-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: center;
}
.product-profile-container .product-profile-wrapper .product-image {
  flex: 1;
  width: 250px;
  height: 450px;
  display: flex;
  justify-content: center;
}
.product-profile-container .product-profile-wrapper .product-image img {
  max-width: 100%;
  height: 100%;
  border-radius: 30px;
}
.product-profile-container .product-profile-wrapper .product-info {
  flex: 1.5;
  width: 300px;
  padding: 40px 0;
}
.product-profile-container .product-profile-wrapper .product-info .product-title {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-profile-container .product-profile-wrapper .product-info .highlight-text {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--orange);
  font-weight: bold;
  margin-bottom: 10px;
}
.product-profile-container .product-profile-wrapper .product-info .product-description {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-profile-container .product-profile-wrapper .product-info .info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.product-profile-container .product-profile-wrapper .product-info .info-list li {
  margin-bottom: 6px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.product-profile-container .product-profile-wrapper .product-info .info-list li strong {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  width: 100px;
  display: inline-block;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 10px;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media {
  display: flex;
  flex-direction: column;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media p {
  font-size: 0.85rem;
  font-weight: bold;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media .social-icons {
  display: flex;
  gap: 10px;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media .social-icons a {
  text-decoration: none;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media .social-icons a div {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--orange);
  border-radius: 50px;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .social-media .social-icons a div:hover {
  box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .buy-btn {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  background: var(--light-blue);
  color: var(--dark);
  border: none;
  padding: 10px 35px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-profile-container .product-profile-wrapper .product-info .social-buy .buy-btn:hover {
  background: rgb(74.9142857143, 177.2357142857, 244.0857142857);
}
.product-profile-container .product-carousel {
  margin-top: 40px;
  display: flex;
  padding-left: 5%;
  align-items: center;
  gap: 15px;
}
.product-profile-container .product-carousel .carousel-track {
  padding: 4px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.product-profile-container .product-carousel .carousel-track img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid #ddd;
  padding: 5px;
}
.product-profile-container .product-carousel .carousel-track img:hover {
  cursor: pointer;
}
.product-profile-container .product-carousel .arrow-btn {
  width: 50px;
  height: 50px;
  padding: 15px;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.product-profile-container .product-carousel .thumbnail-img {
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 8px;
  width: 100px;
  height: auto;
}
.product-profile-container .product-carousel .thumbnail-img:hover {
  opacity: 1;
}
.product-profile-container .product-carousel .thumbnail-img.selected {
  border: 2px solid #ff7a00;
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .product-profile-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .product-profile-wrapper .social-buy {
    flex-direction: column;
    gap: 10px;
  }
  .product-profile-wrapper .product-carousel {
    justify-content: center;
    padding-left: 0;
  }
}
.product-features-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
.product-features-container .nav-pills {
  width: 40%;
  display: flex;
  background-color: var(--light);
  border-radius: 50px;
  padding: 8px 16px;
}
.product-features-container .nav-pills .nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
}
.product-features-container .nav-pills .nav-item .nav-link {
  flex: 1;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.product-features-container .nav-pills .nav-item .nav-link.active {
  background-color: var(--light);
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.product-features-container .tab-content {
  width: 100%;
  display: flex;
  justify-content: center;
}
.product-features-container .tab-content .tab-pane {
  width: 50%;
}
.product-features-container .tab-content .tab-pane .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 18px;
  color: #222;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.product-features-container .tab-content .tab-pane .accordion-button::after {
  content: "+" !important;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--dark);
  background-image: none !important;
  transform: none !important;
  margin-left: auto;
}
.product-features-container .tab-content .tab-pane .accordion-button:not(.collapsed)::after {
  content: "−" !important;
}
.product-features-container .tab-content .tab-pane .accordion-button:focus {
  box-shadow: none;
}
.product-features-container .tab-content .tab-pane .accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}
.product-features-container .tab-content .tab-pane .accordion-body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 0.9rem;
  padding: 15px 20px;
  background-color: var(--light);
  color: #444;
}
@media (max-width: 576px) {
  .product-features-container .nav-pills {
    width: 100%;
  }
  .product-features-container .tab-content .tab-pane {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-features-container .nav-pills {
    width: 80%;
  }
  .product-features-container .tab-content .tab-pane {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .product-features-container .nav-pills {
    width: 80%;
  }
}

.reviews-section {
  padding: 60px 20px;
  text-align: center;
}
.reviews-section .section-title {
  font-family: "Farro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  font-family: "Poppins", sans-serif;
}
.reviews-section .reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.reviews-section .reviews-container .review-card {
  background: var(--light);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  width: 450px;
  text-align: left;
  transition: transform 0.3s;
}
.reviews-section .reviews-container .review-card:hover {
  transform: translateY(-5px);
}
.reviews-section .reviews-container .review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.reviews-section .reviews-container .review-card .review-header .review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-section .reviews-container .review-card .review-header .review-user img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.reviews-section .reviews-container .review-card .review-header .review-user strong {
  font-size: 0.95rem;
  color: #111;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.reviews-section .reviews-container .review-card .review-header .review-user .review-date {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.reviews-section .reviews-container .review-card .review-header .review-rating {
  font-weight: bold;
  font-size: 0.95rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reviews-section .reviews-container .review-card .review-header .review-rating i {
  color: var(--orange);
}
.reviews-section .reviews-container .review-card .review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 768px) {
  .reviews-section .reviews-container {
    flex-direction: column;
    align-items: center;
  }
  .reviews-section .review-card {
    width: 100%;
    max-width: 350px;
  }
}

.faq-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-wrapper .faq-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  font-family: "Farro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.faq-wrapper .accordion {
  width: 60%;
}
.faq-wrapper .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eee;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--light);
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button .faq-number {
  font-weight: bold;
  font-size: 1rem;
  color: #999;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  background-color: var(--light-blue);
  color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background-image: none;
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "−";
  background-color: var(--blue);
  color: var(--light);
}
.faq-wrapper .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faq-wrapper .accordion .accordion-item .accordion-body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 0.95rem;
  padding: 10px 20px 20px 60px;
  color: #333;
}
@media (max-width: 576px) {
  .faq-wrapper .accordion {
    padding-left: 0;
    width: 90%;
  }
  .faq-wrapper .accordion-body {
    padding-left: 0;
  }
}

.subscribe-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.subscribe-section .subscribe-box {
  background-color: var(--light-blue);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.subscribe-section .subscribe-box .subscribe-title {
  font-family: "Farro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.subscribe-section .subscribe-box .subscribe-text {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  color: #111;
  max-width: 600px;
  margin: 0 auto 30px;
}
.subscribe-section .subscribe-box .subscribe-form {
  display: flex;
  justify-content: center;
}
.subscribe-section .subscribe-box .subscribe-form input[type=email] {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  outline: none;
}
@media (max-width: 576px) {
  .subscribe-section .subscribe-box {
    padding: 40px 20px;
  }
  .subscribe-section .subscribe-box .subscribe-title {
    font-size: 1.5rem;
  }
  .subscribe-section .subscribe-box .subscribe-text {
    font-size: 0.9rem;
  }
  .subscribe-section .subscribe-box .subscribe-form input {
    font-size: 0.95rem;
  }
}

.product-detail-form-container {
  width: 100%;
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-detail-form-container .titles {
  width: 45%;
  padding: 10px 20px;
}
.product-detail-form-container .titles h2 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-weight: 600;
}
.product-detail-form-container .titles p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
}
.product-detail-form-container .form-wrapper {
  width: 100%;
  max-width: 800px;
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.product-detail-form-container .form-wrapper .form-title {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.product-detail-form-container .form-wrapper .form-subtitle {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
}
.product-detail-form-container .form-wrapper .styled-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail-form-container .form-wrapper .styled-form .form-group {
  display: flex;
  gap: 1rem;
}
.product-detail-form-container .form-wrapper .styled-form .form-group input,
.product-detail-form-container .form-wrapper .styled-form .form-group select,
.product-detail-form-container .form-wrapper .styled-form .form-group textarea {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  flex: 1;
  padding: 12px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease;
}
.product-detail-form-container .form-wrapper .styled-form .form-group input:focus,
.product-detail-form-container .form-wrapper .styled-form .form-group select:focus,
.product-detail-form-container .form-wrapper .styled-form .form-group textarea:focus {
  border-color: var(--light-blue);
  outline: none;
}
.product-detail-form-container .form-wrapper .styled-form .form-group select {
  background-color: var(--light);
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  appearance: none;
}
.product-detail-form-container .form-wrapper .styled-form .full {
  flex-direction: column;
}
.product-detail-form-container .form-wrapper .styled-form .full textarea {
  width: 100%;
  resize: vertical;
  border-radius: 15px;
}
.product-detail-form-container .form-wrapper .styled-form .center {
  display: flex;
  justify-content: center;
}
.product-detail-form-container .form-wrapper .styled-form .btn-submit {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  padding: 12px 30px;
  background-color: #2196f3;
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.product-detail-form-container .form-wrapper .styled-form .btn-submit:hover {
  background-color: #1976d2;
}
@media (max-width: 1400px) {
  .product-detail-form-container .titles {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .product-detail-form-container .titles {
    width: 75%;
  }
}
@media (max-width: 991px) {
  .product-detail-form-container .titles {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .product-detail-form-container .titles {
    width: 100%;
  }
  .product-detail-form-container .form-wrapper {
    padding: 30px;
  }
  .product-detail-form-container .styled-form .form-group {
    flex-direction: column;
  }
  .product-detail-form-container .styled-form .form-group input,
  .product-detail-form-container .styled-form .form-group select {
    width: 100%;
  }
  .product-detail-form-container .styled-form .btn-submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-detail-form-container .titles {
    width: 100%;
  }
  .product-detail-form-container .form-wrapper {
    padding: 20px;
  }
  .product-detail-form-container .form-title {
    font-size: 1.3rem;
  }
  .product-detail-form-container .form-subtitle {
    font-size: 0.85rem;
  }
}

#admin-layout {
  min-height: 100vh; /* Full vertical height */
  display: flex;
}
#admin-layout .sidebar {
  width: 240px;
  min-height: 100vh;
  background-color: #212529;
  position: sticky;
  top: 0;
}
#admin-layout .sidebar h4 {
  font-weight: bold;
}
#admin-layout .sidebar .nav-link:hover {
  background-color: #343a40;
  border-radius: 4px;
}
#admin-layout .navbar {
  height: 60px;
  border-bottom: 1px solid #dee2e6;
}
#admin-layout .navbar .logo {
  height: 40px;
}
#admin-layout main {
  background-color: #f8f9fa;
  min-height: calc(100vh - 60px);
}
#admin-layout .sidebar .nav-link {
  border-radius: 6px;
  padding: 10px 12px;
  transition: background 0.3s ease;
}
#admin-layout .sidebar .nav-link:hover {
  background-color: #495057;
}
#admin-layout .sidebar .nav-link.active-link {
  background-color: #6c757d; /* Gray */
  border-left: 4px solid #ffc107; /* Golden border */
  font-weight: 600;
}

/*# sourceMappingURL=app.css.map */
