/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff3333;
    --accent-color: #ff6666;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links .btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Section Defaults */
section {
    padding: 80px 0;
}

/* Features Section */
.features {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; /* Increased from 2rem for more breathing room */
}

.location-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f5f5f5; /* Lighter border */
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-6px); /* Slightly reduced lift */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Subtle hover shadow */
}

.location-image {
    position: relative;
    height: 220px; /* Reduced from 250px for balance */
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 1.75rem; /* Increased from 1.5rem for more space */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-info h3 {
    font-size: 1.3rem; /* Reduced from 1.6rem */
    color: var(--primary-color); /* Switched to blue for less red */
    margin-bottom: 1rem;
    text-align: left;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0; /* Lighter, neutral border */
}

.location-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem; /* Increased from 1.2rem */
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666; /* Softer gray */
    text-align: left;
}

.location-address i {
    color: var(--primary-color); /* Changed to blue */
    font-size: 1.1rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem; /* Slightly increased */
    margin-bottom: 1.75rem; /* Increased from 1.5rem */
    background-color: #fafafa; /* Lighter background */
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color); /* Blue accent */
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail-item i {
    font-size: 1.6rem; /* Slightly reduced from 1.8rem */
    color: #888; /* Neutral gray */
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.location-card:hover .detail-item i {
    color: var(--secondary-color); /* Red only on hover */
}

.detail-item p {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #444; /* Darker for readability */
    margin-bottom: 0;
}

.location-facilities,
.location-contact-info {
    margin-bottom: 1.75rem; /* Increased from 1.5rem */
    text-align: left;
}

.location-facilities h4,
.location-contact-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color); /* Blue instead of red */
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.location-facilities p,
.location-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem; /* Slightly increased from 0.5rem */
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555; /* Softer gray */
    transition: color 0.3s ease;
}

.location-facilities p:hover,
.location-contact-info p:hover {
    color: var(--primary-color); /* Blue on hover */
}

.location-facilities i,
.location-contact-info i {
    color: #777; /* Neutral gray */
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.location-facilities p:hover i,
.location-contact-info p:hover i {
    color: var(--secondary-color); /* Red only on hover */
}

.location-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: auto;
}

.location-buttons .btn {
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.location-buttons .btn:hover {
    transform: translateY(-2px);
}

.location-buttons .btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .location-info {
        padding: 1.25rem; /* Adjusted from 1.2rem */
    }
}

@media (max-width: 480px) {
    .location-details {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .location-info {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .location-details {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--light-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    padding: 20px;
    background-color: var(--primary-color-light);
    color: var(--dark-color);
}

.student-info {
    display: flex;
    align-items: center;
}

.student-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-right: 15px;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-details {
    flex-grow: 1;
}

.student-details h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--primary-color);
}

.occupation {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
}

.location {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 5px;
    font-size: 12px;
}

.rating {
    color: var(--accent-color);
    font-size: 14px;
}

.testimonial-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.testimonial-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-color);
    font-style: italic;
}

.testimonial-content i.fa-quote-left {
    margin-right: 8px;
    color: var(--primary-color-light);
    opacity: 0.7;
    font-size: 14px;
}

.testimonial-content i.fa-quote-right {
    margin-left: 8px;
    color: var(--primary-color-light);
    opacity: 0.7;
    font-size: 14px;
}

.no-testimonials {
    text-align: center;
    padding: 40px;
    color: var(--secondary-color);
    font-style: italic;
    grid-column: 1 / -1;
}

.loading-indicator {
    text-align: center;
    padding: 40px;
    color: var(--primary-color);
    grid-column: 1 / -1;
}

.loading-indicator i {
    margin-right: 10px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    text-align: center;
    padding: 20px;
    color: var(--error-color, #e74c3c);
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    margin: 20px 0;
    grid-column: 1 / -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .student-photo {
        width: 60px;
        height: 60px;
    }
}

/* Feedback Section */
.feedback {
    padding: 60px 0;
}

.feedback .section-description {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path fill="%23333" d="M0 0h10L5 5z"/></svg>') no-repeat right 10px center;
    background-size: 10px;
}

.feedback-form .btn {
    margin-top: 10px;
    padding: 12px 24px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    margin-bottom: 1rem;
}

.footer-about span {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-links ul,
.footer-locations ul,
.footer-contact ul {
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-heading span {
    color: var(--secondary-color);
}

.about-subheading {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.about-values {
    background-color: var(--light-bg);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.bio {
    padding: 0 1.5rem 1.5rem;
}

.about-stats {
    background: var(--white);
    color: var(--primary-color);
    padding: 60px 0;
    margin: 30px 0 50px;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .locations-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .location-details {
        grid-template-columns: 1fr 1fr;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-info {
        padding: 1.2rem;
    }

    .feedback-form {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .location-details {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Preview Section (Homepage) */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px; /* Add space between the cards and the button below */
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--light-gray);
    margin-bottom: 10px; /* Add space at the bottom of each card */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Center Page Styles */
.center-overview {
    background-color: var(--white);
    padding: 60px 0;
}

.center-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.center-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.center-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Gallery Styles */
.center-gallery {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.8rem;
    text-align: center;
    font-weight: 500;
}

/* Location and Contact Section */
.center-location {
    padding: 60px 0;
}

.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-details {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.contact-details h3:first-child {
    margin-top: 0;
}

.contact-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
}

.location-directions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .location-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 220px;
    }
}

* Testimonial Styles */
.testimonials-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.testimonials-grid {
    padding: 60px 0;
    background-color: var(--white);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    position: relative;
}

/* .testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
} */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-no-image i {
    font-size: 2rem;
    color: #aaa;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #666;
}

.author-info .location {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Success Stats Section */
.success-stats {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Testimonial Form Section */
.testimonial-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.consent-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.consent-checkbox label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-submit button {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
}

/* Add JavaScript to handle form submission and display messages */
@media (max-width: 768px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.contact-info {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-form {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-hint {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
}

.locations-map {
    padding: 60px 0;
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-info {
    padding: 1.5rem;
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-info p {
    color: #555;
    margin-bottom: 0.5rem;
}

.location-info .btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}
/* Add this to your existing CSS file */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: left;
}

.prominent-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
    flex-shrink: 0;
}

.anonymous-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 0;
}