/* Color Variables */
:root {
    --teal: #51a8b1;
    --green: #a8cf45;
    --grey: #b9c0cb;
    --white: #ffffff;
    --dark-text: #333333;
    --light-text: #666666;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

a {
    text-decoration: none !important;
    
    color: var(--teal);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--teal);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

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

/* Additional styles for active state */
.nav-links a.active {
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

/* Hero Section */
.hero {
    padding: 12rem 0 5rem;
    background: linear-gradient(135deg, rgba(81, 168, 177, 0.1) 0%, rgba(168, 207, 69, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--teal);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.testimonial-cards-stack {
    position: relative;
    height: 100%;
}

.stack-card {
    position: absolute;
    width: 300px;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stack-card:nth-child(1) {
    top: 0;
    right: 0;
    transform: rotate(5deg);
}

.stack-card:nth-child(2) {
    top: 50%;
    right: 10%;
    transform: rotate(-3deg) translateY(-50%);
}

.stack-card:nth-child(3) {
    bottom: 0;
    right: 5%;
    transform: rotate(2deg);
}

.stack-card:hover {
    transform: translateY(-10px) rotate(0) !important;
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rating {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #4796a0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(81, 168, 177, 0.3);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(81, 168, 177, 0.2);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--teal);
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--green);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--green);
    transition: width 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(81, 168, 177, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--teal);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--teal);
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background-color: rgba(185, 192, 203, 0.1);
}

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

.solution-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.solution-image {
    height: 245px;
    overflow: hidden;
}

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

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

.solution-content {
    padding: 1.5rem;
}

.solution-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--teal);
}

.solution-link svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.solution-link:hover svg {
    transform: translateX(5px);
}

/* Testimonials Section Styles */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(81, 168, 177, 0.05) 0%, rgba(168, 207, 69, 0.05) 100%);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 400px; /* Fixed height to prevent layout shifts */
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--teal);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 3rem;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-info {
    margin-top: 2rem;
}

.testimonial-author {
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Navigation Controls */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

.nav-button {
    background: var(--teal);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.nav-button:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--teal);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .stack-card {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }

    .stack-card {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
        transform: none !important;
    }

    .stack-card:hover {
        transform: translateY(-5px) !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .hero-visual {
        height: auto;
    }

    .testimonial-cards-stack {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a.active {
        background-color: rgba(81, 168, 177, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 4px;
    }

    .nav-links a.active::after {
        display: none;
    }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.cta-btn {
    background-color: var(--green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-left: -50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #95bb3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
    justify-content: space-between;
}

.footer-section {
    padding: 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

.footer-logo-text {
    margin-left: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: center;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--green);
    transform: translateX(-50%);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    margin-top: 1.5rem;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:last-child {
    margin-right: 0;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.social-link:hover {
    background-color: var(--green);
    transform: translateY(-3px);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        margin-bottom: 3rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .mobile-toggle {
        display: block;
        position: relative;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.solutions-detailed {
    padding: 5rem 0;
}

.solutions-detailed.alt-bg {
    background-color: rgba(81, 168, 177, 0.05);
}

.solution-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.solution-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li:before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Sub Hero Styles */
.sub-hero {
    padding: 6rem 0 3rem;
    text-align: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(81, 168, 177, 0.05) 0%, rgba(168, 207, 69, 0.05) 100%);
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eef1f6;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(81, 168, 177, 0.1);
    outline: none;
}

.contact-info-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(81, 168, 177, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(81, 168, 177, 0.1);
}

.info-icon {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-right: 1.5rem;
    box-shadow: 0 10px 20px rgba(81, 168, 177, 0.1);
}

.info-content h3 {
    color: var(--teal);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--light-text);
    margin: 0;
}

.info-content a {
    color: var(--teal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--green);
}

.business-hours {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(168, 207, 69, 0.05);
    border-radius: 15px;
}

.business-hours h2 {
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(81, 168, 177, 0.2);
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li span {
    color: var(--teal);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 1rem;
    }
    
    .business-hours li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Mobile Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    width: 90%;
    margin: auto;
}
nav {
    background: #fff;
    padding: 10px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
}
.nav-links li {
    margin: 0 10px;
}
.mobile-toggle {
    display: none; /* Hidden by default */
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column; /* Stack links vertically */
        width: 100%; /* Full width */
        background-color: white; /* Background color for dropdown */
        position: absolute;
        top: 60px; /* Position below the nav */
        left: 0;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex; /* Show links when active */
    }
    .mobile-toggle {
        display: block; /* Show mobile toggle */
    }
}
.hero-content {
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}
.features-grid, .solutions-grid {
    display: grid;
    
    gap: 20px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.cta-btn {
    padding: 10px 20px;
}
footer {
    text-align: center;
    padding: 20px 0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Update responsive styles for hero buttons */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        margin-left: 0; /* Remove any existing margins */
    }

    .btn-secondary {
        margin-left: 0 !important; /* Override any existing margin */
    }
}

/* Ensure consistent button styling */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    border: none;
    text-align: center;
}

/* Remove map section styles */
.map-section {
    display: none;
}

/* Testimonials Page Specific Styles */
.testimonials-featured {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(81, 168, 177, 0.05) 0%, rgba(168, 207, 69, 0.05) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--teal);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-role,
.testimonial-institution {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--teal);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Video Section Styles */
.testimonials-video {
    padding: 6rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--teal);
    overflow: hidden;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--green);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--teal);
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Showcase Styles */
.feature-showcase {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-stack {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.showcase-card {
    position: absolute;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) rotateX(20deg);
    transition: all 0.5s ease;
    visibility: hidden;
}

.showcase-card.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    visibility: visible;
}

.showcase-icon {
    background: rgba(81, 168, 177, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.showcase-card h3 {
    color: var(--teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.showcase-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(81, 168, 177, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--teal);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .feature-showcase {
        height: 400px;
        margin-top: 2rem;
    }
    
    .showcase-card {
        padding: 1.5rem;
    }
}

/* Enhanced Feature Cards */
.features-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(81, 168, 177, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(168, 207, 69, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.feature-list li::before {
    content: "✓";
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-stats {
    background: rgba(81, 168, 177, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.feature-expand-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: auto;
}

.feature-expand-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

/* Tabs Styling */
.features-tabs {
    margin-top: 4rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(81, 168, 177, 0.1);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.tab-btn.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.tab-btn:hover {
    color: var(--teal);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-info h3 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.tab-info p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.feature-metric {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(81, 168, 177, 0.05);
    border-radius: 15px;
}

.metric-circle {
    width: 100px;
    height: 100px;
}

.metric-circle svg {
    width: 100%;
    height: 100%;
}

.tab-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Integration Showcase */
.integration-showcase {
    margin-top: 4rem;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-card h4 {
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.integration-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(81, 168, 177, 0.1);
    color: var(--teal);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.integration-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 120px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .features-grid.enhanced {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
        padding: 0.8rem 1rem;
    }

    .feature-metric {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-grid.enhanced {
        grid-template-columns: 1fr;
    }

    .integration-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-filter {
        gap: 0.8rem;
    }
    
    .filter-btn {
        width: calc(50% - 0.4rem);
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .tab-btn {
        width: 100%;
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .integration-cards {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        width: 100%;
    }

    .feature-metric {
        padding: 1rem;
    }
}

/* Animation for feature cards */
.feature-card {
    transition: all 0.4s ease;
}

.feature-card.expanded {
    transform: scale(1.05);
    z-index: 10;
}

/* Integration card transitions */
.integration-card {
    transition: all 0.3s ease;
    opacity: 1;
}

/* Tab panel transitions */
.tab-panel {
    transition: opacity 0.3s ease;
}

/* Scroll animation */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Feature metric circle animation */
.metric-circle svg {
    transform: rotate(-90deg);
    transition: all 1s ease;
}

.metric-circle path {
    transition: stroke-dasharray 1s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card.expanded {
        transform: none;
    }
    
    .integration-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-metric {
        flex-direction: column;
        align-items: center;
    }
}

/* Advanced Features Section */
.features-detailed {
    padding: 6rem 0;
    background: rgba(81, 168, 177, 0.05);
}

.features-tabs {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-bottom: 1px solid rgba(81, 168, 177, 0.1);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--teal);
}

.tab-btn.active::after {
    width: 100%;
}

.tabs-content {
    padding: 3rem;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-info h3 {
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.tab-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.feature-metric {
    background: rgba(81, 168, 177, 0.05);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.metric-circle {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.metric-circle svg {
    width: 100%;
    height: 100%;
}

.tab-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tab-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Integration Features Section */
.features-integration {
    padding: 6rem 0;
    background: var(--white);
}

.integration-showcase {
    margin-top: 4rem;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-card h4 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin: 0;
}

.integration-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(81, 168, 177, 0.1);
    color: var(--teal);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.integration-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 120px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .integration-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 992px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tabs-navigation {
        padding: 1.5rem;
        gap: 1rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .tabs-content {
        padding: 2rem;
    }

    .feature-metric {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

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

    .integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        width: 60px;
        height: 60px;
    }

    .filter-btn {
        padding: 0.8rem 1.2rem;
        min-width: auto;
    }

    .tabs-navigation {
        flex-wrap: wrap;
    }

    .tab-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .integration-cards {
        grid-template-columns: 1fr;
    }

    .integration-card {
        padding: 1.2rem;
    }

    .filter-btn {
        width: 100%;
    }

    .tab-btn {
        width: 100%;
    }

    .feature-metric {
        padding: 1rem;
    }
}