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

:root {
  --primary-color: #6a2c91;
  --secondary-color: #f39200;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --container-max-width: 1600px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 50px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: #551e7a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(106, 44, 145, 0.3);
}

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

.btn-secondary:hover {
  background-color: #d67d00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 146, 0, 0.3);
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Common Section Header (Left-Right) */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.section-title-left {
  flex: 0 0 40%;
}

.section-title-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.section-title-left h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}

.section-title-right {
  flex: 0 0 50%;
  color: var(--text-gray);
  font-size: 1.1rem;
  padding-bottom: 5px;
}

/* Responsive Grid Helper */
.grid {
  display: grid;
  gap: 30px;
}

@media (max-width: 1024px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-title-left,
  .section-title-right {
    flex: 1;
  }
  .section-title-left h2 {
    font-size: 2.5rem;
  }
}

/* --- REUSABLE PAGE COMPONENTS --- */

/* Page Banner */
.page-banner {
  background-size: cover;
  background-position: center;
  padding: 170px 0 100px;
  position: relative;
  color: var(--white);
  text-align: center;
  /* margin-bottom: 20px; */
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay */
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: var(--white);
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

.breadcrumbs i {
  font-size: 0.8rem;
  opacity: 0.7;
}
.breadcrumb-item a:hover{
    color: var(--secondary-color);
}
.breadcrumb-item.active span {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Sidebar Styling */

/* Sidebar Area (Left) */
.sidebar-area {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--bg-light);
  font-weight: 500;
  transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
  background: var(--primary-color);
  color: var(--white);
}

.category-list a i {
  font-size: 0.9rem;
}

.contact-widget p {
  margin-bottom: 15px;
  color: var(--text-gray);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-widget p i {
  color: var(--primary-color);
  margin-top: 5px;
}

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

.page-link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

/* FAQ Accordion */
.faq-container {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(106, 44, 145, 0.08);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary-color);
  transition: var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  background: #fcfaff;
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-inner {
  padding: 0 30px 24px;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-banner {
    margin-bottom: 0;
    padding: 120px 0 100px;
  }
  .page-banner h1{
    font-size: 1.5rem;
}
  .section-padding {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .sidebar-area {
    width: 100%;
  }
  .faq-header {
    padding: 20px;
  }
  .faq-header h3 {
    font-size: 1rem;
  }
  .faq-inner {
    padding: 0 20px 20px;
  }
  .sidebar-area {
    position: static;
    order: 2;
  }
  .swiper-button-next, .swiper-button-prev{
      width: 30px;
      height: 30px;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
      font-size: 14px;
  }
}
/* SEO Section */
.seo-section{
    padding: 0;
}
.seo-container{
    padding: 60px 0;
}
.seo-container:nth-child(even){
    background: #f7f7f7;
}
.seo-container h2{
    font-size: 2.5rem;
    /*color: var(--primary-color);*/
    margin-bottom: 50px;
    position: relative;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px){
    .seo-container h2{
        font-size: 1.5rem;
    }
}

.seo-container h2>strong{
    font-weight: bold;
}
.seo-container>.container>p{
    margin-bottom: 10px;
}
.seo-container>.container>ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.seo-container>.container>ul>li{
    position: relative;
}
.seo-container>.container>ul>li>p::before{
    content: '';
    display: inline-block;
    top: 0;
    left: 0;
    width: 12px;
    height: 3px;
    background: var(--primary-color);
    margin-right: 10px;
    vertical-align: middle;
}
.seo-container>.container>ul>li>p>strong{
    margin-right: 10px;
    color: var(--primary-color);
}