@font-face {
  font-family: 'Gilroy Light';
  src: url('../font/Gilroy-Light.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy ExtraBold';
  src: url('../font/Gilroy-ExtraBold.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy Regular';
  src: url('../font/Gilroy-Regular.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy Medium';
  src: url('../font/Gilroy-Medium.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy Bold';
  src: url('../font/Gilroy-Bold.ttf') format('opentype');
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gilroy Light', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.justify-center {
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.mx-6 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

header nav {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand img {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
  font-weight: 700;
  font-family: 'Gilroy Bold', sans-serif;

}

.nav-links a:hover {
  color: #ff8008;
}

.nav-links a.active {
  color: #ff8008;
  text-decoration: underline;
}

.nav-links a.disabled {
  color: #6c757d !important;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.download-btn {
  display: grid;
  justify-content: center;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 128, 8, 0.4);
  color: white;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile styles */
@media (max-width: 991px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
    text-align: center;
  }

  .download-btn {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 35px;
  }

  .download-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

#olopoCarousel {
  position: relative;
}

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

.carousel-indicators {
  position: absolute;
  bottom: -35px !important;
  left: 50% !important;
  transform: translateX(-50%);
  margin: 0 !important;
  z-index: 2 !important;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  border: none !important;
  margin: 0 6px !important;
  opacity: 1 !important;
  text-indent: 0 !important;
  transition: all 0.3s ease !important;
}

.carousel-indicators .active {
  background-color: rgb(0, 0, 0) !important;
}

.carousel-indicators button:hover {
  background-color: rgba(255, 126, 0, 0.6) !important;
}

/* Custom arrow styles */
.carousel-control-prev,
.carousel-control-next {
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.carousel-control-prev {
  left: 20px !important;
}

.carousel-control-next {
  right: 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-color: transparent;
}

/* Custom arrow icons with black color */
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
}

.usersection-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  font-family: 'Gilroy Medium', sans-serif;
}

.button {
  width: 360px;
  height: 91px;
  border: none;
  border-radius: 14px;
  font-size: 36px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.selected {
  background-color: #FF7E00;
  color: #FFF;
  border-top: 4px solid #000;
}

.border-top-only {
  border-top: 4px solid #000;
  background-color: #F5E8DA;
  color: #000;
}

.button:hover {
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .usersection-buttons {
    gap: 1rem;
  }

  .button {
    width: 300px;
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .button {
    width: 280px;
    height: 80px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .usersection-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .button {
    width: 100%;
    max-width: 450px;
    height: 70px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .button {
    height: 60px;
    font-size: 20px;
  }
}



.icon-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* Spacing between items */
  /* padding: 20px; */
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
  max-width: 1000px;
  /* Optional: limit width */
  margin: 0 auto;
  /* Center the grid */
}

.category-section {
  padding: 2rem 0;
}

.category-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.category-item {
  display: flex;
  align-items: center;
}

.category-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  z-index: 2;
}

.category-button {
  /* width: 195px; */
  height: 52px;
  /* padding:0.5rem; */
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #ff8c00;
  border-radius: 26px;
  background-color: white;
  color: #000000;
  font-weight: 600;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.category-button:hover {
  background-color: #ff8c00;
  color: white;
  transform: scale(1.05);
}

/* .filled {
  background-color: #ff8c00;
  color: white;
} */

.category-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .category-row {
    gap: 1rem;
  }

  .category-button {
    padding: 0.5rem 1.2rem 0.5rem 1.8rem;
    font-size: 0.95rem;
  }

  .category-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .category-row {
    gap: 0.8rem;
    justify-content: space-evenly;
  }

  .category-button {
    padding: 0.4rem 1rem 0.4rem 1.6rem;
    font-size: 0.9rem;
  }

  .category-icon {
    width: 26px;
    height: 26px;
    margin-right: 5px;
  }
}

@media (max-width: 576px) {
  .category-row {
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .category-item {
    margin-bottom: 0.5rem;
  }

  .category-button {
    padding: 0.3rem 0.8rem 0.3rem 1.4rem;
    font-size: 0.85rem;
  }

  .category-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }
}



.info-buttons {
  display: flex;
  justify-content: center;
  /* gap: 120px; */
  padding: 20px;
  /* flex-wrap: wrap; */
}

@media (max-width: 792px) {
  .info-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.info-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background: linear-gradient(to right, #ff8008, #ffc837); */
  background-color: transparent;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.info-button img {
  width: 390px;
  /* height: 40px; */
  margin-bottom: 10px;
  /* filter: brightness(0) invert(1);  */
  /* makes icons white if they are black PNGs */
}

.info-button:hover {
  transform: scale(1.05);
}


.section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-left: 2rem;
  margin-right: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.view-all-btn {
  color: black;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.brand-section {
  text-align: center;
  position: relative;
}

.brand-section h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 81px;
  margin-bottom: 10px;
  color: #000;
  font-family: 'Gilroy', sans-serif;
}

.subtitle {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  overflow: hidden;
  position: relative;
  justify-items: center;
  /* padding: 0 1rem; */
  margin-right: 3rem;
  margin-left: 3rem;
}

.brand-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: left;
  position: relative;
  width: 100%;
  max-width: 320px;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card img {
  width: 100%;
  height: 18rem;
  /* object-fit: cover; */
  border-radius: 15px;
}

.brand-info {
  padding: 15px 10px;
}

.brand-info h4 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
  color: #000;
}

.brand-info p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
  margin-top: 5px;
}

.image-wrapper {
  position: relative;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
}

.discount {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  position: static;
  line-height: 1;
}

.discount span {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 5px;
}

/* Tablet Styles */
@media (max-width: 992px) {
  .section {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .section-header {
    margin-left: 1rem;
    margin-right: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .brand-section h2 {
    font-size: 45px;
    line-height: 60px;
  }

  .subtitle {
    font-size: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .brand-card img {
    height: 16rem;
  }

  .discount {
    font-size: 3rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .section {
    padding: 20px 15px;
    margin-bottom: 25px;
    border-radius: 15px;
  }

  .section-header {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .view-all-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .brand-section h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }

  .brand-card {
    max-width: none;
  }

  .brand-card img {
    height: 12rem;
    border-radius: 12px;
  }

  .brand-info {
    padding: 10px 5px;
  }

  .brand-info h4 {
    font-size: 1.2rem;
  }

  .brand-info p {
    font-size: 0.9rem;
  }

  .overlay {
    height: 120px;
    padding: 15px;
    border-radius: 0 0 12px 12px;
  }

  .discount {
    font-size: 2.5rem;
  }

  .discount span {
    font-size: 0.8rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .section {
    padding: 15px 10px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .brand-section h2 {
    font-size: 28px;
    line-height: 35px;
  }

  .subtitle {
    font-size: 14px;
  }

  .card-grid {
    gap: 0.8rem;
  }

  .brand-card img {
    height: 10rem;
    border-radius: 10px;
  }

  .brand-info h4 {
    font-size: 1rem;
  }

  .brand-info p {
    font-size: 0.8rem;
  }

  .overlay {
    height: 100px;
    padding: 10px;
  }

  .discount {
    font-size: 2rem;
  }

  .discount span {
    font-size: 0.7rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .brand-card {
    max-width: 280px;
    margin: 0 auto;
  }
}


.footer {
  background: #f8f9fa;
  padding: 4rem 0 2rem 0;
  color: #333;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff8008;
}

.app-download-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.app-download-badges img {
  height: 40px;
  width: auto;
}

.social-icons {
  display: flex;
  gap: 0.1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 40px;
  height: 40px;
  /* background: #fff; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
}

.social-icons a:hover {
  /* background: #ff8008; */
  /* color: white; */
  transform: translateY(-2px);
}

.contact-info {
  font-size: 14px;
  color: #666;
}

.contact-info i {
  color: #ff8008;
  margin-right: 0.5rem;
}

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.contact-info .contact-item i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
  margin-top: 3rem;
  color: #666;
  font-size: 14px;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer-bottom a:hover {
  color: #ff8008;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem 0;
  }

  .footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
  }

  /* Logo section takes full width */
  .footer .row .col-lg-3:first-child {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }

  /* First mobile row: Olopo and Product (2 columns) */
  .footer .row .col-lg-2:nth-child(2) {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-2:nth-child(3) {
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Second mobile row: Partners and Contact (2 columns) */
  .footer .row .col-lg-2:nth-child(4) {
    order: 4;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-3:last-child {
    order: 5;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-section {
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 0 0.5rem;
  }

  .footer-section h5 {
    font-size: 16px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff8008;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  .app-download-badges {
    justify-content: center;
    gap: 0.5rem;
  }

  .app-download-badges img {
    height: 35px;
  }

  .social-icons {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .contact-item {
    margin-bottom: 1rem;
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }

  .footer-bottom .row>div {
    margin-bottom: 1rem;
  }

  .footer-bottom a {
    margin: 0 0.1rem;
    display: inline-block;
  }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 3rem 0 2rem 0;
  }

  /* Logo section takes full width on tablet */
  .footer .row .col-lg-3:first-child {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }

  /* First tablet row: Olopo and Product (2 columns) */
  .footer .row .col-lg-2:nth-child(2) {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-2:nth-child(3) {
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Second tablet row: Partners and Contact (2 columns) */
  .footer .row .col-lg-2:nth-child(4) {
    order: 4;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-3:last-child {
    order: 5;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-section {
    text-align: center;
    padding: 0 1rem;
  }

  .footer-section h5 {
    font-size: 17px;
    border-bottom: 2px solid #ff8008;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  .app-download-badges {
    gap: 0.75rem;
    justify-content: center;
  }

  .social-icons {
    gap: 0.75rem;
    justify-content: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .contact-item {
    justify-content: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0 1rem 0;
  }

  .container {
    padding: 0 15px;
  }

  .footer-section h5 {
    font-size: 15px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .app-download-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .app-download-badges img {
    height: 32px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .contact-info {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 0.5rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 896px) and (orientation: landscape) {
  .footer {
    padding: 2rem 0 1.5rem 0;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 3rem 0 2rem 0;
  }

  /* Logo section takes full width on tablet */
  .footer .row .col-lg-3:first-child {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }

  /* First tablet row: Olopo and Product (2 columns) */
  .footer .row .col-lg-2:nth-child(2) {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-2:nth-child(3) {
    order: 3;
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Second tablet row: Partners and Contact (2 columns) */
  .footer .row .col-lg-2:nth-child(4) {
    order: 4;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row .col-lg-3:last-child {
    order: 5;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-section {
    text-align: center;
    padding: 0 1rem;
  }

  .footer-section h5 {
    font-size: 17px;
    border-bottom: 2px solid #ff8008;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  .app-download-badges {
    gap: 0.75rem;
    justify-content: center;
  }

  .social-icons {
    gap: 0.75rem;
    justify-content: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .contact-item {
    justify-content: center;
  }
}

/* Demo styles for placeholder images */
.placeholder-img {
  background: #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-radius: 4px;
}

.logo-placeholder {
  width: 120px;
  height: 40px;
}

.app-placeholder {
  width: 120px;
  height: 35px;
}
