:root {
  --primary-color: #ff6b00;
  --secondary-color: #1a3a6c;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--primary-color);
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: justify;
}

.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
  padding-left: 25px;
}

.hero-section {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 200px;
  padding-bottom: 100px;
  height: 100vh;
}

.hero-content2 {
  /* max-width: 800px; */
  position: relative;
  margin-top: 22%;
}

.hero-content {
  /* max-width: 800px; */
  position: relative;
  margin-top: 0%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #ff6b00;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: -1;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 30px;
}

.feature-box {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background-color: var(--primary-color);
  color: white;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: 20px;
}

.product-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-description {
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.orange-bar {
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .about-section::before {
    width: 0;
  }
}

.tar-exciting-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.tar-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
}

.tar-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #ff6b00;
}

.tar-specs-list {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tar-spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.tar-spec-item:last-child {
  border-bottom: none;
}

.tar-spec-label {
  font-weight: 600;
  color: #2c3e50;
}

.tar-spec-value {
  color: #ff6b00;
  font-weight: 500;
}

.tar-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tar-badge {
  background: #ff6b00;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.tar-badge:hover {
  transform: translateY(-3px);
}

.tar-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff6b00, #ff8533);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tar-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
  color: white;
}

.tar-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tar-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tar-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.tar-image-container:hover .tar-image-overlay {
  transform: translateY(0);
}

.tar-image-container:hover .tar-main-image {
  transform: scale(1.05);
}

.tar-overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tar-overlay-content p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .tar-content-wrapper {
    margin-bottom: 3rem;
  }

  .tar-section-title {
    font-size: 2rem;
  }
  .hero-section {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 200px;
    padding-bottom: 100px;
    height: 70vh !important;
  }

  .about-content {
    padding: 0px !important;
  }
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .tar-specs-list {
    padding: 1.5rem;
  }

  .tar-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .tar-section-title {
    font-size: 1.8rem;
  }
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #ff6b00;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 500;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

@media (max-width: 991px) {
  .hero-section {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 302px;
    padding-bottom: 0px;
    height: 100%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin-top: 83px;
    filter: contrast(100%) brightness(230%);
    background-color: white !important;
    height: 99% !important;
  }
  .hero-content {
    /* max-width: 800px; */
    position: relative;
    margin-top: -11%;
    padding: 22px;
    background-color: white;
    color: black;
    filter: contrast(200%) brightness(50%);
  }
  .about-section {
    padding: 0px 15px !important;
    position: relative;
  }

  /* .hero-section .container {
    padding: 0px;
  } */
  .hero-section .container:nth-child(1) {
    padding: 0px;
  }
}
