* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Sticky Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(5px);
}

.logo i {
    color: #3aaf85;
    margin-right: 10px;
    transition: transform 0.4s ease;
}

.logo:hover i {
    transform: rotate(15deg);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #3aaf85;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3aaf85;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-column {
    padding: 0 15px;
}

.dropdown-column h4 {
    color: #3aaf85;
    padding: 10px 15px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-links {
    list-style: none;
}

.dropdown-links li {
    margin-bottom: 8px;
}

.dropdown-links a {
    display: block;
    color: #e6e6e6;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.2s;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.dropdown-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(58, 175, 133, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.dropdown-links a:hover {
    color: #3aaf85;
    padding-left: 20px;
}

.dropdown-links a:hover::before {
    left: 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-btn {
    background: #3aaf85;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(58, 175, 133, 0.3);
}

.contact-btn:hover {
    background: #2e8b68;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 80px 20px 20px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #3aaf85;
    padding-left: 20px;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3aaf85;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

.mobile-dropdown {
    margin-top: 10px;
    margin-left: 20px;
    border-left: 2px solid #3aaf85;
    padding-left: 15px;
}

.mobile-dropdown-item {
    margin-bottom: 10px;
}

.mobile-dropdown-link {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #3aaf85;
    padding-left: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #3aaf85;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}

/* Printer Support Section */
.printer-support {
    position: relative;
    /* background: url('https://images.unsplash.com/photo-1593642634524-b40b5baae6bb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover; */
    background: url('/assets/header.png');
    color: #fff;
    padding: 150px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 28, 17, 0.85) 0%, rgba(25, 45, 25, 0.9) 100%);
    z-index: 0;
}

.support-content {
    position: relative;
    display: flex;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    gap: 40px;
    flex-wrap: wrap;
}

.support-left,
.support-right {
    flex: 1;
    min-width: 300px;
    animation: fadeInUp 1s ease-out;
}

.support-left h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-left p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #e6e6e6;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #3aaf85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.benefits-list li:hover::before {
    transform: scale(1.1);
}

.form-box {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInRight 1s ease-out;
}

.form-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2a3d1f;
}

.form-box p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-box input,
.form-box textarea {
    padding: 14px 18px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #3aaf85;
    box-shadow: 0 0 0 3px rgba(58, 175, 133, 0.2);
}

.form-box textarea {
    resize: vertical;
    min-height: 120px;
}

.form-box button {
    padding: 16px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.form-box button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.form-box button:hover {
    background: linear-gradient(to right, #2e8b68, #3aaf85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

.form-box button:hover::before {
    left: 100%;
}

/* Brand Section */
.printer-brand-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.brand-section-title {
    font-size: 2.5rem;
    color: #2a3d1f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease;
}

.brand-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3aaf85;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.brand-section-title:hover::after {
    width: 150px;
}

.brand-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.8s ease;
}

.brand-card:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-card:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-card:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-card:nth-child(4) {
    animation-delay: 0.4s;
}

.brand-card:nth-child(5) {
    animation-delay: 0.5s;
}

.brand-card:nth-child(6) {
    animation-delay: 0.6s;
}

.brand-card:nth-child(7) {
    animation-delay: 0.7s;
}

.brand-card:nth-child(8) {
    animation-delay: 0.8s;
}

.brand-card:nth-child(9) {
    animation-delay: 0.9s;
}

.brand-card:nth-child(10) {
    animation-delay: 1.0s;
}

.brand-card:nth-child(11) {
    animation-delay: 1.1s;
}

.brand-card:nth-child(12) {
    animation-delay: 1.2s;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 175, 133, 0.1) 0%, rgba(46, 139, 104, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card:hover img {
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-section {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 20px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    background: #f0f7f4;
}

.image-section {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease;
}

.slide.active {
    display: block;
    animation: zoomIn 10s ease-in-out infinite alternate;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.thumbnail {
    width: 32%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border: 2px solid #3aaf85;
    transform: translateY(-5px);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.content-section {
    flex: 1 1 500px;
    animation: fadeInRight 1s ease;
}

.content-section h2 {
    font-size: 2.3rem;
    color: #2a3d1f;
    margin-bottom: 20px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3aaf85;
    border-radius: 2px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

.content-section button {
    padding: 14px 30px;
    background: linear-gradient(to right, #3aaf85, #2e8b68);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
    position: relative;
    overflow: hidden;
}

.content-section button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.content-section button:hover {
    background: linear-gradient(to right, #2e8b68, #3aaf85);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

.content-section button:hover::before {
    left: 100%;
}

/* Achievements Section */
.achievement-section {
    background: linear-gradient(135deg, #2a3d1f 0%, #3a5c2d 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.achievement-section h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

/* Container for Cards */
.achievement-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.achievement-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
    color: #2c3e50;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.achievement-card:nth-child(1) {
    animation-delay: 0.1s;
}

.achievement-card:nth-child(2) {
    animation-delay: 0.2s;
}

.achievement-card:nth-child(3) {
    animation-delay: 0.3s;
}

.achievement-card:nth-child(4) {
    animation-delay: 0.4s;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #3aaf85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card i {
    font-size: 3rem;
    color: #3aaf85;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.achievement-card:hover i {
    transform: scale(1.2) rotate(15deg);
}

.achievement-card h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.achievement-card:hover h3 {
    color: #3aaf85;
}

.achievement-card p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonial-section {
    background: #f9f6f2;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    color: #2a3d1f;
    margin-bottom: 0.5rem;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

.testimonial-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;   
    margin: 0 auto 60px;
    animation: fadeIn 1.5s ease;
}

.testimonial-container {
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    min-width: 280px;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .testimonial-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 5%;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        grid-template-columns: 1fr;
        padding: 25px 10%;
    }

    .testimonial-card {
        font-size: 0.95rem;
        padding: 18px;
    }
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    /* flex: 0 0 33.333%; */
    flex: 1 0 calc(33.333% - 30px);
    box-sizing: border-box;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: #3aaf85;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #3aaf85;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-slide h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-slide .stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-slide p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-pagination {
    text-align: center;
    margin-top: 2rem;
}

.testimonial-pagination span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-pagination span:hover {
    background: #3aaf85;
}

.testimonial-pagination .active {
    background: #3aaf85;
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 50px 20px 0;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2a3d1f;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.faq-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease;
}

.faq-container {
    border-top: 1px solid #eee;
    padding-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 40px;
    background: #fff;
    border: none;
    outline: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
    color: #3aaf85;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 40px;
    font-size: 2rem;
    color: #3aaf85;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    color: #2e8b68;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 40px 30px 40px;
    max-height: 400px;
    opacity: 1;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3aaf85;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #3aaf85;
    transform: translateX(10px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #3aaf85;
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3aaf85;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 992px) {
    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-contact-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .support-content {
        flex-direction: column;
        gap: 40px;
    }

    .support-left h1 {
        font-size: 2.4rem;
    }

    /* .testimonial-slide {
        flex: 0 0 100%;
        margin: 0 0 30px;
    } */

    .testimonial-slide {
        flex: 1 0 calc(100% - 30px);
        padding: 30px 20px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .support-left h1 {
        font-size: 2.2rem;
    }

    .form-box {
        padding: 30px;
    }

    .achievement-card {
        padding: 30px 15px;
    }

    .achievement-card h3 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-section-title {
        font-size: 2rem;
    }

    .support-left h1 {
        font-size: 2rem;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .achievement-section {
        padding: 60px 20px;
    }

    .slider-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 15px;
    }

    .brand-grid {
        gap: 15px;
    }

    .brand-card {
        padding: 20px;
        height: 120px;
    }

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

    .content-section h2 {
        font-size: 1.8rem;
    }

    .testimonial-slider-wrapper {
        padding: 10px 0;
    }
}