/* JNXPC Limited - About CSS */
/* ========================= */

html, body {
    overflow-x: hidden !important;
}

/* --- About Hero Section Start --- */
.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--accent-color);
    margin-top: -80px;
    padding: 100px 0 60px;
    box-sizing: border-box;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at top center,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 35%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 65%,
        rgba(0, 0, 0, 0.95) 80%
    );
    z-index: 1;
    pointer-events: none;
}

.about-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    box-sizing: border-box;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.white-text {
    color: white !important;
}

#typewriter::after {
    content: '|';
    animation: blink 1s infinite;
    color: white;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#typewriter span {
    color: var(--accent-color);
}

.about-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
}

.about-hero-content h1 span {
    color: var(--accent-color);
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 800px;
}

.about-hero-flex-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.about-hero-image {
    flex: 1;
    max-width: 600px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.3);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-hero-image:hover img {
    transform: scale(1.02);
}

/* Hero Stats Styles */
.about-hero-stats {
    flex: 1;
    width: 100%;
    max-width: 350px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 20px;
    padding: 10px 20px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
    position: relative;
    overflow: hidden;
    grid-column: 3 / 4;
}

.about-hero-stats::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 18px;
    box-shadow: 
        inset 0 0 15px rgba(var(--accent-color-rgb), 0.3),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: all 0.3s ease;
}

.about-hero-stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: #111111;
  border-radius: 20px;
  padding: 10px 40px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 18px;
  box-shadow: 
      inset 0 0 15px rgba(var(--accent-color-rgb), 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: all 0.3s ease;
}

.about-hero-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 15px 0;
}

.about-hero-stat-item h2 {
  color: var(--accent-color);
  font-size: 46px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: center;
}

.about-hero-stat-item p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 4px;
  text-align: center;
}

.about-hero-stat-item p:last-child {
    color: #808080;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.about-hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1440px) {
    .about-hero-container {
        padding: 0 4rem;
    }
    
    .about-hero-flex-container {
        gap: 2rem;
    }
    
    .about-hero-image {
        flex: 0 0 45%;
        max-width: 500px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 1280px) {
    .about-hero {
        height: auto;
        min-height: 100vh;
    }

    .about-hero-container {
        padding: 0 54px 60px;
    }
    
    .about-hero-content {
        width: 90%;
        margin: 0 auto 16px;
    }
    
    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-stat-item h2 {
        font-size: 40px;
    }

    .about-hero-stat-item p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .about-hero-container {
        padding: 100px 32px 16px;
    }

    .about-hero-content {
        margin-bottom: 0;
    }
    
    .about-hero-content h1 {
        font-size: 38px;
        margin-bottom: 0.5rem;
    }

    .about-hero-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .about-hero-flex-container {
        flex-direction: row;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .about-hero-image {
        flex: 0 0 45%;
        max-width: 375px;
        height: auto;
    }

    .about-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .about-hero-stats {
        flex: 0 0 45%;
        padding: 1rem;
        max-width: 250px;
    }

    .about-hero-stat-item {
        margin: 0.8rem 0;
    }

    .about-hero-stat-item:nth-child(3) {
        margin-bottom: 0;
    }

    .about-hero-stat-item h2 {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 0.2rem;
    }

    .about-hero-stat-item p {
        font-size: 13px;
        margin: 0.2rem 0;
    }

    .about-hero-stat-item p:last-child {
        font-size: 12px;
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .about-hero-container {
        padding: 90px 2rem 30px;
    }
    
    .about-hero-content {
        width: 100%;
    }
    
    .about-hero-content h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .stats-container {
        padding: 15px;
        gap: 15px;
    }
    
    .about-hero-stat-item h2 {
        font-size: 34px;
    }

    .about-hero-stat-item p {
        font-size: 14px;
        margin-top: 5px;
    }

    .about-hero-stat-item p:last-child {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-hero-container {
        padding: 80px 1rem 20px;
        gap: 10px;
    }
    
    .about-hero-content {
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 26px;
    }

    .about-hero-content p {
        font-size: 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .about-hero-stats {
        max-width: 200px;
        padding: 12px 0;
    }
    
    .about-hero-stat-item {
        text-align: center;
        padding: 0 0 10px;
        margin-top: 0;
    }
    
    .about-hero-stat-item h2 {
        font-size: 20px;
        margin-top: 0 !important;
    }
    
    .about-hero-stat-item p {
        font-size: 12px;
        margin-top: 0;
    }

    .about-hero-stat-item p:last-child {
        font-size: 10px;
    }

    .about-hero-flex-container {
        gap: 2rem;
    }
}
/* --- Hero Section End --- */


/* --- Location Section Start --- */
.location-section {
    padding: 0 0 30px;
    position: relative;
}

.location-section::before {
    content: '';
    display: block;
    width: 100%;
    margin-bottom: 48px;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
    background: rgba(24, 25, 28, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
    filter: grayscale(100%) invert(92%) hue-rotate(180deg);
    opacity: 0.6;
    transition: all 0.3s ease;
}

@media (min-width: 1199px) {
    .map-wrapper:hover {
        transform: translateY(-10px);
    }
}   

.map-wrapper:hover iframe {
    opacity: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(var(--accent-color-rgb), 0.1), 
        rgba(0,0,0,0)
    );
    pointer-events: none;
    z-index: 2;
}

.location-info h2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

.location-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(24, 25, 28, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-item:hover {
    transform: translateX(10px);
    background: rgba(var(--accent-color-rgb), 0.1);
}

.card-icon {
    background: #212529;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.card-text h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.4rem;
    color: #fff;
}

.card-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
    .location-container {
        display: flex;
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 2rem;
        margin-bottom: -400px;
    }

    .location-info {
        order: -1;
        text-align: center;
        margin-bottom: 1rem;
    }

    .map-content {
        float: left;
        padding-right: 1rem;
    }

    .map-wrapper {
        width: 400px;
        height: 350px;
    }

    .location-features {
        width: 50%;
        float: right;
        padding-left: 1rem;
        gap: 1rem;
    }

    .location-container::after {
        content: "";
        display: table;
        clear: both;
    }

    .location-info h2 {
        font-size: 26px;
    }

    .location-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .map-wrapper {
        aspect-ratio: 3/4;
        transform: translateY(-360px) translateX(-230px);
    }

    .card-item {
        padding: 1rem;
        gap: 1rem;
        text-align: left;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-text h3 {
        font-size: 1rem;
    }

    .card-text p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .map-wrapper {
        width: 350px;
        height: 300px;
    }

    .map-wrapper {
        aspect-ratio: 3/4;
        transform: translateY(-360px) translateX(-200px);
    }
}

@media (max-width: 480px) {
    .location-section {
        padding-bottom: 0;
        margin-top: -30px;
    }

    .location-container {
        padding: 0 0.75rem;
        margin-bottom: 0;
    }

    .map-wrapper {
        width: 100%;
        transform: translateX(10px);
        margin: 0 auto;
        width: 375px;
        height: 350px;
    }

    .location-features {
        width: 100%;
        margin-left: 0;
    }

    .location-info h2 {
        font-size: 22px;
    }

    .location-info p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .card-item {
        padding: 0.75rem;
    }

    .card-text h3 {
        font-size: 0.9rem;
    }

    .card-text p {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
}
/* --- Location Section End --- */


/* --- Services Section Start --- */
.about-service-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(var(--accent-color-rgb), 0) 0%,
        rgba(var(--accent-color-rgb), 0.3) 50%,
        rgba(var(--accent-color-rgb), 0) 100%
    );    
    margin-bottom: 48px;
}

.about-service-section {
    color: #fff;
    padding: 40px 0;
    position: relative;
}

.about-service-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-service-container h1 {
    text-align: center;
    font-size: 38px;
    margin: 12px 0;
    line-height: 1.3;
}

.about-service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    padding: 20px;
}

.about-service-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(24, 25, 28, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--accent-color-rgb), 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-service-icon i {
    font-size: 24px;
    color: #fff;
}

.about-service-icon.active {
    opacity: 1;
    background: rgba(24, 25, 28, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-service-icon:hover {
    background: rgba(var(--accent-color-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
}

.about-service-icon img {
    display: none;
}

.about-service-cards {
    background: rgba(24, 25, 28, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    border-radius: 15px;
    padding: 24px;
    max-width: 600px;
    min-height: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-service-card > p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 18px;
    line-height: 1.6;
}

.sub-text {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.sub-text p:first-child {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff;
}

.sub-text p:last-child {
    margin-top: 8px;
    color: #888;
}

.about-service-card {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.about-service-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.about-service-icon.active::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 50%;
    width: 80px;
    height: 1px;
    background: rgba(var(--accent-color-rgb), 0.5);
    transform: translateY(-50%);
}

.about-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(24, 25, 28, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.about-service-icon.clicked {
    transform: scale(0.95);
    transition: transform 0.15s ease;
}

.about-service-icon:hover,
.about-service-cards:hover ~ .about-service-icons .about-service-icon.active,
.about-service-icon.active {
    background: rgba(var(--accent-color-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
}

.about-service-cards:hover,
.about-service-icon:hover ~ .about-service-cards,
.about-service-icon.active ~ .about-service-cards {
    background: rgba(var(--accent-color-rgb), 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .about-service-container {
        max-width: 800px;
        padding: 20px;
    }

    .about-service-container h1 {
        font-size: 32px;
    }

    .about-service-content {
        gap: 40px;
    }

    .about-service-cards {
        max-width: 500px;
        padding: 20px;
    }

    .about-service-card > p {
        font-size: 16px;
    }

    .sub-text p:first-child {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-service-container {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .about-service-container {
        max-width: 90%;
        padding: 15px 10px;
    }

    .about-service-container h1 {
        font-size: 24px;
        margin: 8px 0;
    }

    .about-service-content {
        padding: 10px;
        gap: 20px;
    }

    .about-service-icons {
        gap: 10px;
    }

    .about-service-icon {
        width: 45px;
        height: 45px;
    }

    .about-service-icon i {
        font-size: 18px;
    }

     .about-service-cards {
        padding: 15px;
        min-height: 160px;
    }

    .about-service-card > p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .sub-text p:first-child {
        font-size: 16px;
    }

    .sub-text p:last-child {
        font-size: 12px;
        margin-top: 6px;
        margin-bottom: 0;
    }
}
/* --- Services Section End --- */


/* --- FAQ Section Start --- */
.about-faq-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(var(--accent-color-rgb), 0) 0%,
        rgba(var(--accent-color-rgb), 0.3) 50%,
        rgba(var(--accent-color-rgb), 0) 100%
    );    
}

.about-faq-section {
    max-width: 1400px;
    padding: 40px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;    
}

.about-faq-section h1 {
    font-size: 44px;
    color: white;
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
}

.about-faq-section > p {
    color: #808080;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 20px;
    max-width: 800px;
}

.about-faq-section > p a {
    color: var(--accent-color);
    transition: 0.3s ease;
}

.about-faq-section > p a:hover {
    color: white;
}

.about-faq-container {
    width: 75%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-faq-item {
    background: linear-gradient(45deg, rgba(var(--accent-color-rgb), 0.65), rgb(126, 2, 2), rgba(0, 0, 0, 0.4));
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    margin: 15px 0;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.about-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-faq-question h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.close-icon,
.plus-icon {
    color: white;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #212529 !important;
    border-radius: 50%;
    transform: rotate(0deg);
}

.about-faq-item.expanded .close-icon {
    transform: rotate(45deg);
}

.about-faq-item:hover .plus-icon,
.about-faq-item:hover .close-icon {
    background: rgba(var(--accent-color-rgb), 0.2) !important;
}

.about-faq-answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.about-faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

.about-faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 700;
}

.about-faq-answer a:hover {
    color: white;
}

.about-faq-item.expanded .about-faq-answer {
    height: auto;
    margin-top: 15px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.65);
    padding: 20px;
    border-radius: 8px;
    color: #808080;
    line-height: 1.6;
}

.about-faq-item.expanded .about-faq-answer p {
    margin: 0;
}

.about-faq-item:hover {
    background: linear-gradient(45deg, rgba(var(--accent-color-rgb), 0.65), rgb(255, 0, 0), rgba(0, 0, 0, 0.4));
    background-color: rgba(0, 0, 0, 0.8);
}


/* Responsiveness */
@media screen and (max-width: 768px) {
    .about-faq-section {
        padding: 40px 5%;
    }

    .about-faq-section h1 {
        font-size: 48px;
    }

    .about-faq-question h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .about-faq-section {
        padding: 40px 0 0;
    }
    .about-faq-section h1 {
        font-size: 24px;
    }

    .about-faq-section > p {
        width: 90%;
        font-size: 12px;
    }

    .about-faq-container {
        width: 85%;
    }

    .about-faq-item {
        padding: 14px 18px;
        width: 100%;
    }

    .about-faq-item h3 {
        font-size: 14px;
    }

    .about-faq-item p {
        font-size: 12px;
    }

    .about-faq-item.expanded .about-faq-answer {
        padding: 10px;
    }
}
/* --- FAQ Section End --- */


/* --- Partners Section Start --- */
.partners-section {
    padding: 10px 0 20px 0;
    text-align: center;
}

.partners-section h1 {
    font-size: 40px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
}

.partners-section .partners-container > p {
  color: #808080;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 26px;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.partner-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    width: 160px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    background-color: rgba(var(--accent-color-rgb), 0.1);
	  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.partner-card img {
    max-width: 150px;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

/* Responsiveness */
@media (max-width: 992px) {
    .partners-section h2 {
        font-size: 42px;
    }
    
    .partners-grid {
        display: grid;
        grid-template-rows: auto auto;
        gap: 24px;
    }
    
    .partner-row:first-child {
        display: grid;
        grid-template-columns: repeat(4, 160px);
        justify-content: center;
        gap: 24px;
    }
    
    .partner-row:last-child {
        display: grid;
        grid-template-columns: repeat(3, 160px);
        justify-content: center;
        gap: 24px;
    }

    .partner-card {
        width: 120px;
        height: 60px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .partners-section h2 {
        font-size: 40px;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-row:first-child {
        grid-template-columns: repeat(4, 140px);
        gap: 20px;
    }
    
    .partner-row:last-child {
        grid-template-columns: repeat(3, 140px);
        gap: 20px;
    }
    
    .partner-card {
        width: 100px;
        height: 50px;
        padding: 16px;
    }
    
    .partner-card img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 20px 15px;
    }

    .partners-section h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .partners-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .partners-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .partner-row {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .partner-row:first-child {
        display: flex;
        justify-content: space-between;
        max-width: 300px;
    }

    .partner-row:nth-child(2) {
        display: flex;
        justify-content: space-between;
        max-width: 300px;
    }

    .partner-row:last-child {
        display: flex;
        justify-content: center;
    }

    .partner-card {
        width: 85px;
        height: 40px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .partner-card img {
        max-width: 70px;
        max-height: 30px;
        object-fit: contain;
    }
}
/* --- Partners Section End --- */