/* Global Styles */
:root {
    --primary-color: #3ddc84;
    --secondary-color: #fffbe6;
    --dark-color: #222;
    --light-color: #fff;
    --accent-color: #f5f5f5;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --max-width: 1200px;
    --brand-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --text-color: #333; /* Define a default text color for consistency */
}

/* Ensure global box-sizing and prevent horizontal scroll */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--brand-font);
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--secondary-color);
    padding-top: 60px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Adjust main content containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem; /* Adjusted default padding */
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #3451b8;
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color); /* Using the defined text color */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #222; /* Explicitly set to a dark color for visibility */
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust for fixed header */
    }

    .header {
        padding: 0.5rem 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle span {
        background-color: #222; /* Ensure it's dark and visible */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 1.2rem;
        padding: 0.5rem 0;
        text-align: left;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }

    /* General mobile layout adjustments */
    .container {
        padding: 0 1rem; /* Tighter padding on smaller screens */
    }

    section {
        padding: 3rem 0; /* Consistent vertical padding for sections */
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem; /* Even tighter padding on very small screens */
    }

    section {
        padding: 2rem 0; /* Reduce vertical padding for very small screens */
    }

   
}


/* Responsive adjustments */
@media (max-width: 768px) {
  
}

@media (max-width: 480px) {
   
}

/* About, Mission, Vision Sections */
.about, .mission, .vision {
    padding: 5rem 0;
}

.about {
    background-color: var(--accent-color); /* Alternate background color */
}

.about h2, .mission h2, .vision h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.text {
    flex: 1;
}

.text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.mission, .terms {
    background-color: var(--secondary-color);
}

.vision {
    background-color: var(--accent-color); /* Alternate background color */
}

/* App Section */
.app {
    padding: 5rem 0;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
}

.app h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.app-info {
    flex: 1;
}

.app-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.android {
    background-color: #3ddc84;
    color: #fff;
}

.android:hover {
    background-color: #32b36c;
    transform: translateY(-3px);
}

.ios {
    background-color: #a2a2a2;
    color: #fff;
    cursor: not-allowed;
}

.disabled {
    opacity: 0.7;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Terms and Privacy Sections */
.terms, .privacy {
    padding: 5rem 0;
}

.terms h2, .privacy h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.legal-content {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 60px);
}

.legal-content h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: #2ecc71;
}

/* Footer Styles */
.footer {
    background: var(--light-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(61, 220, 132, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    
    
    .about, .mission, .vision, .app, .terms, .privacy {
        padding: 3rem 0;
    }
    
    .about h2, .mission h2, .vision h2, .app h2, .terms h2, .privacy h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .content {
        gap: 1.5rem;
    }
    
    .text p {
        font-size: 1rem;
    }
    
    .footer-content > div {
        width: 100%;
    }
}

.logo img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.brand-name {
    display: none;
}

.btn, .app-btn, .footer-links a, .social-icons a, .whatsapp-float {
    border-radius: 16px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 999;
    transition: background 0.3s;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
}

/* Header background transition on scroll */
header.scrolled {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}

/* Hamburger animation */
.hamburger.active {
    transform: rotate(90deg) scale(1.1);
}

/* Button micro-interactions */
.btn, .app-btn {
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.btn:hover, .app-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 16px rgba(61,220,132,0.12);
}

/* Card hover micro-interaction */
.content .image, .app-image img {
    transition: transform 0.3s, box-shadow 0.3s;
}
.content .image:hover, .app-image img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 8px 32px rgba(61,220,132,0.15);
}

/* Icon hover micro-interaction */
.social-icons a, .footer-social .social-icons a, .whatsapp-float {
    transition: color 0.2s, transform 0.2s, background 0.2s;
}
.social-icons a:hover, .footer-social .social-icons a:hover, .whatsapp-float:hover {
    color: var(--primary-color);
    background: #e0e0e0;
    transform: scale(1.1);
}

/* Section fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Footer background update */
footer {
    background: #f5f5f5;
    color: var(--dark-color);
}
.footer-logo h3, .footer-links a:hover, .footer-bottom p {
    color: var(--dark-color);
}

.section-card {
    background: #f0fdf4;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 122, 123, 0.07);
    padding: 2.5rem 2rem;
    max-width: 800px;
    margin: 2rem auto;
    transition: box-shadow 0.3s, transform 0.3s;
}
.section-card:hover {
    box-shadow: 0 8px 32px rgba(44, 122, 123, 0.13);
    transform: translateY(-4px) scale(1.02);
}
.section-title {
    color: #2c7a7b;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.section-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.section-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.brand-teal {
    color: #2c7a7b;
}
.animated-hero {
    animation: heroFadeIn 1.2s cubic-bezier(.4,1.4,.6,1) 0.2s both;
}
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: none; }
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.4,1.4,.6,1), transform 0.9s cubic-bezier(.4,1.4,.6,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}
.btn, .app-btn {
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}
.btn:hover, .app-btn:hover {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 6px 24px rgba(44, 122, 123, 0.13);
}
.content .image, .app-image img {
    transition: transform 0.3s, box-shadow 0.3s;
}
.content .image:hover, .app-image img:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 32px rgba(44, 122, 123, 0.15);
}

/* Add specific style for the collaboration section */
#index.html .terms:last-of-type { /* Targeting the last section with class 'terms' on index.html */
     background-color: var(--accent-color);
}

/* Feature Cards Styles */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    width: 100%;
    text-align: center;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Roadmap Styles */
.roadmap-container {
    padding: 3rem 0;
    position: relative;
    background: linear-gradient(to bottom, rgba(61, 220, 132, 0.05), transparent);
    border-radius: 30px;
}

.roadmap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), rgba(61, 220, 132, 0.2));
    opacity: 0.5;
    border-radius: 2px;
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.roadmap-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.roadmap-content {
    flex: 1;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 220, 132, 0.1);
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.roadmap-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
}

.step-tag {
    background: rgba(61, 220, 132, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.roadmap-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.step-benefit i {
    font-size: 1.1rem;
}

.roadmap-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-style: italic;
}

.roadmap-note i {
    font-size: 1.2rem;
}

/* Hover Effects */
.roadmap-item:hover {
    transform: translateX(10px);
}

.roadmap-item:hover .roadmap-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.roadmap-item:hover .icon-bg {
    transform: scale(1.2);
}

.roadmap-item:hover .roadmap-icon i {
    transform: scale(1.1) rotate(5deg);
}

.roadmap-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.roadmap-item:hover .roadmap-content {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(61, 220, 132, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .roadmap::before {
        left: 40px;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 1rem;
        margin-left: 40px;
    }

    .roadmap-icon {
        width: 60px;
        height: 60px;
    }

    .roadmap-icon i {
        font-size: 1.5rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .roadmap-content {
        width: 100%;
    }

    .roadmap-item:hover {
        transform: translateX(5px);
    }

    .roadmap-item:hover .roadmap-content {
        transform: translateX(5px);
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Steps Grid Styles */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.step-card {
    position: relative;
    background: var(--light-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 220, 132, 0.1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid rgba(61, 220, 132, 0.1);
}

.step-benefit i {
    font-size: 1.1rem;
}

.steps-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-style: italic;
}

.steps-note i {
    font-size: 1.2rem;
}

/* Hover Effects */
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: rgba(61, 220, 132, 0.2);
}

.step-card:hover .step-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* Flow Layout Styles */
.flow-container {
    padding: 3rem 0;
}

.flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.flow-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.flow-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.flow-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.flow-connector {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.flow-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-style: italic;
}

.flow-note i {
    font-size: 1.2rem;
}

/* Hover Effects */
.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flow-item:hover .flow-icon {
    transform: scale(1.1);
    background: rgba(61, 220, 132, 0.2);
}

.flow-item:hover .flow-icon i {
    transform: scale(1.1) rotate(5deg);
}

.flow-item:hover .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), rgba(61, 220, 132, 0.8));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flow {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-connector {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .flow-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Sustainability Impact Styles */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.impact-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(61, 220, 132, 0.1);
    text-align: center;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.impact-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(61, 220, 132, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
    background: rgba(61, 220, 132, 0.2);
}

.impact-card:hover .impact-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Loading Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        padding: 1.25rem;
    }

    .impact-icon {
        width: 50px;
        height: 50px;
    }

    .impact-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Community Message Styles */
.community-message {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.1);
    border: 1px solid rgba(61, 220, 132, 0.2);
}

.community-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.community-message:hover::before {
    transform: translateX(100%);
}

.message-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.message-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.message-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.message-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: none;
}

.cta-button.primary,
.cta-button.secondary {
    display: none;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.3);
    background: #2ecc71;
}

.cta-button i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .cta-button i {
        font-size: 1.1rem;
    }
}


/* How the App Works Section */
#how-it-works {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.05) 0%, rgba(61, 220, 132, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233ddc84' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.flow-container {
    position: relative;
    z-index: 1;
}

.flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.flow-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(61, 220, 132, 0.2);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.1);
}

.flow-connector {
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.flow-item:hover + .flow-connector {
    opacity: 1;
    transform: scale(1.1);
}

.flow-note {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(61, 220, 132, 0.2);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.1);
}

/* Hover Effects */
.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(61, 220, 132, 0.15);
    border-color: rgba(61, 220, 132, 0.4);
}

.flow-item:hover .flow-icon {
    background: rgba(61, 220, 132, 0.2);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.2);
}

.flow-item:hover .flow-icon i {
    transform: scale(1.1) rotate(5deg);
    color: #2ecc71;
}

.flow-item:hover .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), rgba(61, 220, 132, 0.8));
}

/* Collaboration Section Styles */
.collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.collab-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 220, 132, 0.1);
}

.collab-icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.collab-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.collab-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.collab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.collab-list li {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.collab-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.collab-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.collab-cta p {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Hover Effects */
.collab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.collab-card:hover .collab-icon {
    transform: scale(1.1);
    background: rgba(61, 220, 132, 0.2);
}

.collab-card:hover .collab-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collab-grid {
        grid-template-columns: 1fr;
    }

    .collab-card {
        padding: 1.5rem;
    }

    .collab-icon {
        width: 60px;
        height: 60px;
    }

    .collab-icon i {
        font-size: 1.75rem;
    }

    .collab-card h3 {
        font-size: 1.3rem;
    }

    .collab-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .collab-cta p {
        font-size: 1.1rem;
    }
}

/* Section Headings Spacing */
section h2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Small Business Section Styles */
#small-business {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

#small-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
}

.business-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.business-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.business-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.business-text {
    max-width: 800px;
    text-align: center;
}

.business-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.business-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
}

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.category-item span {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.business-highlight {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 2.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.business-quote {
    font-size: 1.2rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 2rem;
}

.business-quote::before,
.business-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.business-quote::before {
    left: 0;
    top: -0.5rem;
}

.business-quote::after {
    right: 0;
    bottom: -1rem;
}

.business-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Hover Effects */
.category-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(61, 220, 132, 0.2);
}

.category-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #2ecc71;
}

.business-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(61, 220, 132, 0.2);
}

.business-icon:hover i {
    transform: scale(1.1);
    color: #2ecc71;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section h2 {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .business-content {
        padding: 2rem 0;
    }

    .business-icon {
        width: 100px;
        height: 100px;
    }

    .business-icon i {
        font-size: 3rem;
    }

    .business-intro {
        font-size: 1.1rem;
    }

    .business-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-item {
        padding: 1.5rem;
    }

    .category-item i {
        font-size: 2rem;
    }

    .category-item span {
        font-size: 1.1rem;
    }

    .business-highlight {
        font-size: 1.2rem;
    }

    .business-quote {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
}

/* Global Vision Section Styles */
#global-vision {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.05) 0%, rgba(61, 220, 132, 0.1) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.1);
    transition: all 0.4s ease;
}

.vision-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.vision-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 1.5rem;
}

.vision-roadmap {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.vision-roadmap h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.vision-roadmap h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.roadmap-items {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 220, 132, 0.1);
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.1);
    transition: all 0.3s ease;
}

.roadmap-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.roadmap-progress {
    height: 6px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

/* Hover Effects */
.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(61, 220, 132, 0.1);
    border-color: var(--primary-color);
}

.roadmap-item:hover::before {
    opacity: 1;
}

.roadmap-item:hover .roadmap-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.roadmap-item:hover .roadmap-icon i {
    transform: scale(1.1);
    color: white;
}

.roadmap-item:hover .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), rgba(61, 220, 132, 0.8));
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .vision-roadmap {
        padding: 2rem;
    }
    
    .roadmap-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #global-vision {
        padding: 3rem 0;
    }

    .vision-content {
        padding: 0 1rem;
    }

    .vision-header {
        margin-bottom: 2rem;
    }

    .vision-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .vision-icon i {
        font-size: 2.5rem;
    }

    .vision-intro {
        font-size: 1.1rem;
    }

    .vision-roadmap {
        padding: 1.5rem;
    }

    .roadmap-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .roadmap-icon {
        width: 40px;
        height: 40px;
    }

    .roadmap-icon i {
        font-size: 1.2rem;
    }

    .roadmap-content h4 {
        font-size: 1rem;
    }

    .roadmap-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .roadmap-progress {
        height: 4px;
    }
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    width: 100%;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(61, 220, 132, 0.2);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-header h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(61, 220, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: var(--primary-color);
}

.contact-card:hover .card-icon i {
    color: white;
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #2ecc71;
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 0;
    }

    .contact-content {
        padding: 0 1rem;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* Main Hero Section */
.hero-headline {
    text-align: center;
    font-size: 3rem; /* Adjust as needed for impact */
    font-weight: 700; /* Make it bold */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
}

.about-content {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.features-section {
    padding: 3rem 0;
}

.features-section .section-title {
    margin-bottom: 2.5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
} 