* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --color-primary: #1e5f47;
    --color-secondary: #FCE78B;
    --color-accent: #C26B17;
    --color-text: #333;
    --color-background: #ffffff;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #1e5f47;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navLogo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn):after {
    content: none;
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #FCE78B;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.nav-links .login-button {
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #1e5f47;
    background-color: transparent;
    border: 2px solid #FCE78B;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.nav-links .login-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #FCE78B;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links .login-button:hover:before {
    width: 100%;
}

.nav-links .login-button:hover {
    color: #1e5f47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 231, 139, 0.3);
}

.nav-links .register-button {
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background-color: #C26B17;
    border: 2px solid #C26B17;
    transition: all 0.3s ease;
    margin: 0;
    box-shadow: 0 2px 8px rgba(194, 107, 23, 0.3);
    text-decoration: none;
}

.nav-links .register-button:hover {
    background-color: #d17b1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 107, 23, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to right, rgba(30, 95, 71, 0.9), rgba(30, 95, 71, 0.8)),
        url("../images/Hero page image/1.png");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.currency-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.currency-symbol {
    position: absolute;
    color: var(--color-secondary);
    opacity: 0.6;
    font-weight: bold;
    z-index: 0;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
}
.btnhero {
    background-color: var(--color-primary);
    border: 2px solid var(--color-secondary);
}

.btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 100px 0;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    text-align: center;
    color: var(--color-primary);
    
}

.section-title:after {
    /* content: ''; */
    display: none;
    /* width: 80px;
    height: 4px;
    background: var(--color-accent);
    margin: 20px auto 0;
    border-radius: 2px; */
}

/* About Us Section */
.about-us {
    background-color: #f8f9fa;
}



.about-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-card p,strong,ul {
    font-size: 16px;
    
    line-height: 1.6;
}

/* Features/Services Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* Stats Section */
.stats {
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--color-secondary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.team-role {
    font-size: 16px;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
    color: var(--color-primary);
}

.faq-answer {
    font-size: 14px;
    color: #666;
    display: none;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    /* text-decoration: none; */
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: var(--color-secondary);
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright p {
    margin: 5px 0;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.copyright a {
    color: #007BFF;
    /* Change to your preferred color */
    text-decoration: none;
    /* Remove underline */
}

.copyright a:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-header {
    background: var(--color-primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-input {
    border-top: 1px solid #eee;
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background-color: var(--color-accent);
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    color: #333;
}

.chat-message.user {
    background: #e8f0fe;
    margin-left: auto;
}

.chat-message.bot {
    background: #f1f1f1;
    margin-right: auto;
}

.chat-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background:#C26B17;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s;
}

.chat-trigger:hover {
    transform: scale(1.1);
    background-color: var(--color-accent);
}

.event-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-left {
    width: 300px;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-meta {
    margin-top: 20px;
}

.event-time, .event-location {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.event-time i, .event-location i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.card-footer {
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-see-all {
    padding: 15px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.btn-see-all:hover {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

.btn-see-all i {
    margin-right: 8px;
}

/* Animation classes */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .card {
        flex-direction: column !important;
    }
    
    .card-img-left {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .event-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Parallax Effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Demo Card Animation */
.demo-card {
    background-color: #FCE78B;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    position: relative;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.demo-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.demo-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.demo-card-actions {
    display: flex;
    gap: 10px;
}

.demo-card-actions span {
    cursor: pointer;
    font-size: 20px;
}

.demo-card-date,
.demo-card-time,
.demo-card-location {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.currency-logo {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.currency-logo img {
    width: 150px;
    height: auto;
}

/* Currency Symbols Grid */
.currency-symbols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
    max-width: 150px;
    transform: rotate(45deg);
}

.currency-symbol-tile {
    background: var(--color-accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #1e5f47;
    font-size: 36px;
    font-weight: bold;
    transform: rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1e5f47;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        margin-right: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    
    .features-grid,
    .stats-grid,
    .testimonials-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .even-section-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .even-section-image {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        width: 300px;
    }
}


.all-events-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.event-day {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.event-month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.event-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.event-btn {
    background-color: var(--color-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.event-btn:hover {
    background-color: var(--color-primary);
}

.team-section {
    padding: 100px 0;
    background-color: #ffff;
}

.founder-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.founder-image {
    flex: 1;
    max-width: 40%;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.founder-content {
    flex: 2;
    max-width: 60%;
}

.founder-title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.founder-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.founder-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-highlights {
    margin-top: 20px;
}

.founder-highlights h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.founder-highlights p {
    font-size: 16px;
    
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-highlights ul {
    list-style-type: disc;
    padding-left: 20px;
    
}

.founder-highlights li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .event-title {
        font-size: 24px;
        margin-bottom: 15px;
        color: var(--color-primary);
    }
    .founder-image,
    .founder-content {
        max-width: 100%;
    }

    .founder-image {
        margin-bottom: 20px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light background */
    overflow: hidden; /* Hide overflow */
}

.services-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.services-grid {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    width: calc(300px * 3 + 30px * 2); /* Show only 3 cards at a time */
    margin: 0 auto; /* Center the grid */
}

.services-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.service-card {
    flex: 0 0 300px; /* Fixed width for each card */
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-primary); /* Use your primary color */
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary); /* Use your primary color */
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Scroll Buttons */
.scroll-button {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.scroll-button:hover {
    background-color: var(--color-accent);
}

.scroll-button.left {
    left: -50px; /* Position left button */
}

.scroll-button.right {
    right: -50px; /* Position right button */
}

.locations {
    padding: 40px 0;
    background-color: #f8f9fa; 

}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.location-card {
    position: relative;
    background-size: cover; /* Ensures the image covers the entire card */
    background-position: center; /* Centers the image */
    width: 100%;
    height: 200px; /* Adjust the height for better visibility */
    border-radius: 8px;
    display: flex;
    align-items: flex-end; /* Aligns the content at the bottom */
    justify-content: flex-start; /* Aligns the content to the left */
    color: white;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.location-card h3 {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Makes text visible on images */
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../images/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.testimonial-header small {
    font-family: 'Ubuntu';
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 50rem;
    padding: 8px 20px;
    margin-bottom: 15px;
}

.testimonial-header h1 {
    font-family: 'Merriweather';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    min-width: calc(33.333% - 20px);
}

.testimonial-item .d-flex {
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-item img.rounded-circle {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-item .fa-quote-right {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--primary);
}

.testimonial-item h4 {
    font-family: 'Ubuntu';
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.testimonial-item .profession {
    font-family: 'Ubuntu';
    font-size: 14px;
    color: #666;
}

.testimonial-content .fa-star {
    color: #F29F58;
    margin-right: 2px;
}

.testimonial-content p {
    font-family: 'Ubuntu';
    font-size: 16px;
    color: #555;
    margin: 15px 0 0;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-header h1 {
        font-size: 24px;
    }

    .testimonial-item {
        min-width: calc(100% - 20px);
    }

    .testimonial-item h4 {
        font-size: 16px;
    }

    .testimonial-item .profession {
        font-size: 12px;
    }

    .testimonial-content p {
        font-size: 14px;
    }
}

