/* Global Styles */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #ffffff;
    --background-color: #121212;
    --card-background: #1e1e1e;
    --border-color: #333333;
    --transition: all 0.3s ease;
}

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

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

.container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #121212 !important;
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-color) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #121212 !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Parallax Backgrounds */
.parallax-bg {
    display: none;
}

/* Sections with Parallax */
.hero,
.benefits,
.testimonials,
.about {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('/images/ebike-charging.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.22));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: transparent;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}

.hero h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light-color);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background-color: #388e3c;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(56, 142, 60, 0.3);
}

.cta-button:active {
    transform: scale(0.98);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 30%, #444444 0%, #232323 100%);
}

.services .container {
    background: transparent;
}

.services h2,
.benefits h2,
.faq h2,
.testimonial-area h2,
.about h2,
.contact h2,
footer h3 {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    background: url('/images/repaired_bike.png') no-repeat center center/cover;
    padding: 2rem 0;
}

.benefits::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.6));
    z-index: 0;
}

.benefits .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
}

.benefit-card {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    box-sizing: border-box;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    white-space: nowrap;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .services h2,
    .benefits h2,
    .faq h2,
    .testimonial-area h2,
    .about h2,
    .contact h2,
    footer h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits h2 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background: radial-gradient(circle at 50% 30%, #444444 0%, #232323 100%);
}

.faq .container {
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 1.5rem;
}

.faq-category h3 {
    color: var(--light-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--card-background);
}

.faq-question {
    padding: 0.75rem 1rem;
    background: var(--card-background);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--light-color);
    font-weight: 500;
}

.faq-question i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-color);
}

/* Testimonials Section */
.testimonial-area {
    padding: 0 0 20px 0 !important;
    min-height: unset !important;
    height: auto !important;
    background: #121212;
}

.testimonial-area .container {
    background: transparent;
    margin-top: 48px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.testimonial-area .section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.testimonial-area h2,
.testimonial-area .section-description {
    margin-bottom: 32px;
}

.testimonial-area h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-area p {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonials,
.slick-list,
.slick-track {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.testimonial {
    max-width: 320px;
    min-height: 320px;
    height: 100%;
    margin: 10px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px 20px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.slick-dots {
    position: static !important;
    margin-top: 10px;
}

.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.slick-prev {
    left: 10px !important;
}

.slick-next {
    right: 10px !important;
    left: auto !important;
}

.slick-dots li button {
    background: none !important;
    border: none !important;
    width: 18px;
    height: 18px;
    padding: 0;
    outline: none;
}
.slick-dots li button:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
    opacity: 1 !important;
    color: transparent !important;
    margin: 0 auto;
    transition: background 0.2s;
}
.slick-dots li.slick-active button:before {
    background: var(--primary-color);
}

.author-img {
    width: 100px;
    height: 100px;
    margin-top: -40px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
    z-index: 2;
}

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

.author-quote {
    text-align: center;
}

.author-quote h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.author-quote blockquote {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0;
}

.author-quote blockquote i {
    color: var(--primary-color);
    font-size: 22px;
    padding: 0 5px;
}

/* About Section */
.about {
    background: url('/images/dead battery.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-top: 30px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.about-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 3px solid var(--primary-color);
    background: #222;
}

.about-caption {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.7rem;
    font-style: italic;
    letter-spacing: 0.2px;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .about-image {
        flex-direction: row;
        gap: 1rem;
    }
    .about-photo {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 30%, #444444 0%, #232323 100%);
}

.contact .container {
    background: transparent;
}

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

.contact-form {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.form-row .form-group {
    flex: 1 1 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #232323;
    color: #fff;
    border: 1.5px solid #333;
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 1.08rem;
    margin-bottom: 0;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-height: 48px;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 90px;
    max-height: 200px;
    resize: vertical;
    font-family: inherit;
}

.contact-form label {
    font-size: 1rem;
    font-weight: 400;
    color: #eaeaea;
    margin-bottom: 0.2rem;
}

.contact-form input[type="file"] {
    background: none;
    color: #fff;
    border: none;
    font-size: 1rem;
    margin-top: 0.3rem;
}

.contact-form input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 1.1em;
    height: 1.1em;
    border-radius: 4px;
    margin-right: 0.5em;
    vertical-align: middle;
}

@media (max-width: 1100px) {
    .contact-form {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}

.contact-form .submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(46,204,113,0.10);
    margin-top: 0.7rem;
}

.contact-form .submit-button:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 24px rgba(46,204,113,0.18);
}

.contact-form a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-form a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-info, .footer-contact, .footer-social {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-info h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-info p, .footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: var(--light-color);
    font-size: 2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.footer-bottom a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .footer-info, .footer-contact, .footer-social {
        align-items: center;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove test image */
.test-image {
    display: none;
}

/*testimonial*/
.testimonial-area::before {
    display: none;
}

.slick-slide {
    opacity: 1 !important;
}

.heading p {
    color: #fff;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.slick-dots {
    bottom: -40px;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

.slick-arrow {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    opacity: 0.8;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--secondary-color) !important;
}

.heading h2 {
    position: relative;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    text-transform: uppercase;
    padding: 0 0 10px;
    color: #fff;
}

.heading h2:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 150px;
    background: #ffbe00;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.heading h2:after {
    content: '';
    height: 3px;
    width: 50px;
    background: #3c377b;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.heading {
    text-align: center;
    padding: 20px 0;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials .slick-list {
        padding: 0 10% !important;
    }
    
    .testimonial {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .author-img {
        width: 120px;
        height: 120px;
        top: -60px;
    }
}

@media (max-width: 576px) {
    .testimonials .slick-list {
        padding: 0 !important;
    }
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--secondary-color) !important;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .testimonial-area {
        padding: 40px 0 80px;
    }
    
    .testimonials {
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .testimonial {
        margin: 10px;
    }
    
    .testimonial-area h2 {
        font-size: 2rem;
    }
}

.testimonial-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 48px;
}
.testimonial-nav .slick-dots {
    position: static !important;
    margin: 0 10px;
}
.testimonial-nav .slick-arrow {
    display: none !important;
}

.slick-prev, .slick-next {
    display: block !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    left: 10px !important;
    right: auto;
}
.slick-next {
    left: auto !important;
    right: 10px !important;
}

.slick-dots li button:before {
    color: #bbb !important;
    opacity: 1 !important;
    font-size: 18px !important;
}
.slick-dots li.slick-active button:before {
    color: var(--primary-color) !important;
}
.slick-dots li button {
    background: transparent !important;
}

.footer-contact a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.85);
}

.privacy-modal-content {
    background: #111;
    color: #fff;
    margin: 5% auto;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.close-modal {
    color: #fff;
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover {
    color: var(--primary-color);
}

.privacy-modal-content h2 {
    margin-top: 0;
    color: var(--primary-color);
    text-align: center;
}

.privacy-modal-content p {
    margin-bottom: 1.1em;
}

.privacy-modal-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.privacy-modal-content a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 700px) {
    .privacy-modal-content {
        padding: 1.2rem 0.7rem;
        max-width: 95vw;
    }
}

.container.about-wide {
    width: 40vw;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    width: 40vw;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    display: flex;
    flex-direction: row !important;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.about-photo {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: 3px solid var(--primary-color);
    background: #222;
}

@media (max-width: 900px) {
    .about-wide, .about-content {
        max-width: 98vw !important;
    }
    .about-image {
        flex-direction: row !important;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .about-photo {
        width: 130px;
        height: 130px;
    }
} 