/* About Page Specific Styles */
/* Extends the main styles.css with about page specific styling */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 15px;
    position: relative;
}

.breadcrumbs a:hover {
    color: #fff;
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-1px);
}

.breadcrumbs i {
    font-size: 12px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 4px;
}

.breadcrumbs span {
    color: #4CAF50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.15);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Our Story Section */
.our-story-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
    position: relative;
}

.our-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.our-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 20px;
    color: #fff;
}

.about-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.about-feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.our-story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.our-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.our-story-image:hover img {
    transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 0;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mission-card .about-feature-icon,
.vision-card .about-feature-icon {
    margin: 0 auto 25px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
}

.why-choose-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.why-choose-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.why-choose-slider::-webkit-scrollbar {
    display: none;
}

.why-choose-card {
    flex: 0 0 350px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

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

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon i {
    font-size: 24px;
    color: #fff;
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.why-choose-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.why-choose-card ul li i {
    color: #4CAF50;
    font-size: 12px;
}

.why-choose-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    color: #4CAF50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.why-choose-nav-btn:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.why-choose-nav-btn.prev-btn {
    left: -25px;
}

.why-choose-nav-btn.next-btn {
    right: -25px;
}

/* Process Section */
.our-process-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4CAF50;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.process-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-image-overlay {
    opacity: 1;
}

.team-content {
    padding: 30px;
}

.team-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.designation {
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}

.team-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.detail-item i {
    color: #4CAF50;
    width: 20px;
    font-size: 16px;
}

.qualifications {
    margin-bottom: 25px;
}

.qualifications p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.qualifications i {
    color: #4CAF50;
    width: 20px;
}

.expertise {
    margin-bottom: 25px;
}

.expertise h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise ul li {
    padding: 5px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.expertise ul li::before {
    content: "•";
    color: #4CAF50;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-link:hover {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.social-link i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Testimonial Section */
.testimonial-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 0;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: #4CAF50;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #4CAF50;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

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

.testimonial-content p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4CAF50;
}

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

.author-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    color: #4CAF50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-nav-btn:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-btn.prev-btn {
    left: -25px;
}

.testimonial-nav-btn.next-btn {
    right: -25px;
}

.swipe-hint {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}

.swipe-hint i {
    color: #4CAF50;
    margin: 0 5px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
}

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

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e1e5e9;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #4CAF50;
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- Navbar: Match index.html --- */
/* Note: Navbar styles are now handled by the main styles.css file */

/* --- Footer: Professional, Responsive, Filled Look --- */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4CAF50;
}
.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #4CAF50;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #4CAF50;
}
.footer-column .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 15px;
}
.footer-column .contact-info i {
    color: #4CAF50;
    width: 20px;
}
.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #46cbff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: #4CAF50;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom-links {
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    .footer-content {
        gap: 20px;
    }
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-column p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .footer-links a,
    .footer-column ul li a {
        font-size: 13px;
    }
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 60px;
    }

    .banner-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .breadcrumbs {
        font-size: 14px;
        gap: 8px;
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .breadcrumbs i {
        font-size: 10px;
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        padding: 3px 6px;
    }

    .our-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .our-story-content p {
        font-size: 15px;
    }

    .about-features {
        gap: 20px;
    }

    .about-feature {
        padding: 20px;
    }

    .about-feature-icon {
        width: 45px;
        height: 45px;
    }

    .about-feature-icon i {
        font-size: 18px;
    }

    .about-feature-content h3 {
        font-size: 16px;
    }

    .about-feature-content p {
        font-size: 13px;
    }

    .our-story-image img {
        height: 300px;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 20px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 14px;
    }

    .why-choose-container {
        padding: 0 20px;
    }

    .why-choose-card {
        flex: 0 0 300px;
        padding: 25px 20px;
    }

    .why-choose-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .why-choose-nav-btn.prev-btn {
        left: -20px;
    }

    .why-choose-nav-btn.next-btn {
        right: -20px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding: 25px 20px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-image-wrapper {
        height: 250px;
    }

    .team-content {
        padding: 25px 20px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .testimonial-container {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 25px 20px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .testimonial-nav-btn.prev-btn {
        left: -20px;
    }

    .testimonial-nav-btn.next-btn {
        right: -20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

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

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

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 80px 0 50px;
    }

    .banner-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .breadcrumbs {
        font-size: 12px;
        gap: 6px;
        padding: 8px 12px;
        flex-direction: column;
        gap: 8px;
    }
    
    .breadcrumbs i {
        font-size: 9px;
        transform: rotate(90deg);
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        padding: 2px 4px;
    }

    .our-story-section {
        padding: 60px 0;
    }

    .our-story-container {
        gap: 30px;
    }

    .about-feature {
        padding: 15px;
        gap: 15px;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-feature-icon i {
        font-size: 16px;
    }

    .about-feature-content h3 {
        font-size: 15px;
    }

    .about-feature-content p {
        font-size: 12px;
    }

    .our-story-image img {
        height: 250px;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-card,
    .vision-card {
        padding: 25px 15px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 18px;
    }

    .mission-card p,
    .vision-card p {
        font-size: 13px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-card {
        flex: 0 0 280px;
        padding: 20px 15px;
    }

    .why-choose-card h3 {
        font-size: 18px;
    }

    .why-choose-card p {
        font-size: 13px;
    }

    .why-choose-card ul li {
        font-size: 12px;
    }

    .our-process-section {
        padding: 60px 0;
    }

    .process-step {
        padding: 20px 15px;
    }

    .process-step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .process-content h3 {
        font-size: 18px;
    }

    .process-content p {
        font-size: 13px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-image-wrapper {
        height: 200px;
    }

    .team-content {
        padding: 20px 15px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .designation {
        font-size: 14px;
    }

    .detail-item {
        font-size: 12px;
        gap: 10px;
    }

    .qualifications p {
        font-size: 12px;
    }

    .expertise h4 {
        font-size: 14px;
    }

    .expertise ul li {
        font-size: 12px;
    }

    .social-link {
        padding: 8px 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .social-link i {
        font-size: 12px;
        width: 14px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px 15px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .author-image {
        width: 45px;
        height: 45px;
    }

    .author-info h3 {
        font-size: 14px;
    }

    .author-info p {
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 15px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 12px;
    }
} 