/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #005cb9;
  --primary-hover: #004a96;
  --secondary-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f7f7f7;
  --bg-dark: #1a1a1a;
  --border-color: #eeeeee;
  --max-width: 1600px;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.oswald {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
.bg-light {
  background: var(--bg-light);
}
/* Page Banner */
.page-banner {
  padding: 130px 0 100px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/product-banner.webp") no-repeat
      center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.page-banner p {
  font-size: 1.2rem;
  /* max-width: 600px; */
  margin: 0 auto;
}
/* Common Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.overlay {
  position: relative;
}
.overlay > * {
  position: relative;
  z-index: 5;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}
/* Section Templates */
section {
  padding: 50px 0;
}

@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-title p {
  color: var(--text-light);
  /* max-width: 700px; */
  margin: 0 auto;
}

.text-blue {
  color: var(--primary-color);
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: var(--primary-color);
  color: white !important;
  border-radius: 50%;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--primary-color) !important;
  background: white;
}
.swiper-pagination-bullet {
  width: 20px;
  border-radius: 3px;
  background: var(--primary-color);
}
/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-50px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Modal Close */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  z-index: 10;
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ripple-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ripple-btn::before,
.ripple-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: ripple 2s infinite;
}

.ripple-btn::after {
  animation-delay: 1s;
}

/* Video Modal */
.video-modal .modal-content {
  max-width: 1000px;
  padding: 0;
  background: black;
  overflow: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Card Hover Utilities */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Sidebar Styles */
.sidebar {
  flex: 0 0 25%;
  max-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px; /* Adjust based on header */
}

.sidebar-widget {
  margin-bottom: 40px;
}

.sidebar-widget:last-child {
  margin-bottom: 0px;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
  display: inline-block;
  width: 100%;
}

.sidebar-menu li {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  color: var(--primary-color);
  padding-left: 5px;
}
.sidebar-menu a i{
  order: 2;
}
/* Accordion Styles (Generic) */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  background: white;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-header.active {
  background: var(--primary-color);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  opacity: 0;
}

.accordion-content.active {
  max-height: 200px;
  padding: 20px;
  opacity: 1;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-color);
  font-weight: 600;
}

.page-link.active,
.page-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}
/* CTA Banner */
.cta-banner {
  background: url("../images/cta-bg.webp")
    no-repeat fixed center / cover;
  padding: 50px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}
.cta-content .btn-outline {
  border-color: white;
  color: white;
}
.cta-content .btn-outline:hover {
  border-color: var(--primary-color);
}