/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #8BC34A;
    --accent-color: #FF9800;
    --dark-color: #2E7D32;
    --light-color: #F1F8E9;
    --text-color: #2E7D32;
    --text-light: #558B2F;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #E8F5E8;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    --gradient-secondary: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    --gradient-accent: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    --gradient-natural: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    position: relative;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #fff
}

.btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 20px 0;
}

.header.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 45px;
    margin-right: 15px;
    border-radius: 10px;
}

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

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 10px 0;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav ul.active {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }

    .nav ul.active + .auth-buttons {
        display: flex;
        position: absolute;
        top: calc(100% + 280px);
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-signup {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 100px;
    background-image: url('bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 3;
}

.hero-card {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    border-radius: 24px;
    padding: 48px 36px 40px 36px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    margin-left: 5vw;
}

.hero-card h1 {
    color: var(--primary-dark);
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(44,62,80,0.07);
    text-align: left;
}

.hero-card p {
    color: var(--text-light);
    font-size: 1.18rem;
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

.hero-card .btn {
    margin-top: 30px;
    font-size: 1.2rem;
    padding: 18px 45px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.journey-btn {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    color: #fff;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
}

.journey-btn:hover {
    animation: none;
    transform: translateY(-8px) scale(1.07) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(67, 233, 123, 0.25);
    animation: rocketshake 0.5s linear;
}

@keyframes rocketshake {
    0% { transform: translateY(0) rotate(0); }
    20% { transform: translateY(-2px) rotate(-2deg); }
    40% { transform: translateY(-4px) rotate(2deg); }
    60% { transform: translateY(-6px) rotate(-2deg); }
    80% { transform: translateY(-8px) rotate(2deg); }
    100% { transform: translateY(-8px) rotate(-2deg); }
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), transparent);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
    position: relative;
    padding: 20px;
}

.about-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 30px;
    transform: rotate(-3deg);
    z-index: -2;
    box-shadow: var(--shadow-hover);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-secondary);
    border-radius: 30px;
    transform: rotate(2deg);
    z-index: -1;
    opacity: 0.7;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 4px solid var(--white);
}

.about-image:hover img {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-image:hover::before {
    transform: rotate(-2deg);
}

.about-image:hover::after {
    transform: rotate(1deg);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.services h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.services h2::after {
    background: var(--secondary-color);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.services {
    overflow: hidden;
}

.services-grid-container {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    padding: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    width: max-content;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(76,175,80,0.10);
    border: 2px solid #e0f2f1;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Products Section */
.products {
    background-image: url('https://static.vecteezy.com/system/resources/previews/028/027/136/large_2x/healthy-food-background-with-fruits-and-berries-top-view-with-copy-space-photo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.406) 0%, rgba(200, 230, 201, 0.146) 100%);
    z-index: 1;
}

.products .container {
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: var(--light-color);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
    border: 1.5px solid var(--primary-light);
    position: relative;
}

.product-card h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.product-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 22px;
    flex: 1;
}

.product-card .price {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 22px;
    border-radius: 20px;
    align-self: flex-end;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.08);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

/* Practices Section */
.practices {
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.practices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 79, 0.436) 0%, rgba(56, 142, 60, 0.347) 100%);
    z-index: 1;
}

.practices h2 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.practices .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.practices-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1.3rem;
}

.accordion-header i {
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 30px 25px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    background-image: url('https://img.freepik.com/free-photo/view-palm-tree-species-with-green-foliage_23-2151486513.jpg?uid=R156222685&ga=GA1.1.1994287649.1749448788&semt=ais_items_boosted&w=740');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 36, 36, 0.425) 0%, rgba(44, 46, 45, 0.338) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.testimonial-slide {
    display: none;
    background: rgba(69, 67, 67, 0.18);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 25px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-content {
    text-align: left;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff !important;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.client-info h4 {
    margin-bottom: 5px;
    color: #fff !important;
    font-size: 1.2rem;
}

.client-info span {
    color: #fff !important;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-glass {
    background: rgba(69, 67, 67, 0.18);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0);
    padding: 48px 32px 40px 32px;
    margin: 0 auto;
    max-width: 950px;
    position: relative;
    z-index: 2;
}

.testimonial-glass h2 {
    color: #a8f0ad !important;
}

.testimonial-glass .section-subtitle {
    color: #fff !important;
}

/* Contact Section */
.contact {
    background-image: url('https://img.freepik.com/free-photo/bluish-plant-leaves-textured-background_53876-107989.jpg?semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 36, 36, 0.425) 0%, rgba(44, 46, 45, 0.338) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact h2 {
    color: var(--white);
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    padding: 60px 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
    z-index: -1;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-form h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    width: 60px;
    height: 3px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    margin-bottom: 40px;
    color: var(--white);
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #0ca717ba;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
      z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-about .logo {
    background: linear-gradient(45deg, #C8E6C9, #A5D6A7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(200,230,201,0.3);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-links h4::after {
    background: linear-gradient(90deg, #C8E6C9, #A5D6A7);
    left: 0;
    transform: none;
    height: 3px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(200,230,201,0.3);
}

.footer-links ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-weight: bold;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 25px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-newsletter h4::after {
    background: linear-gradient(90deg, #C8E6C9, #A5D6A7);
    left: 0;
    transform: none;
    height: 3px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(200,230,201,0.3);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.footer-newsletter input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
    width: 100%;
    background: linear-gradient(45deg, #C8E6C9, #A5D6A7);
    color: #2E7D32;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.footer-newsletter button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.footer-newsletter button:hover::before {
    left: 100%;
}

.footer-newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #A5D6A7, #C8E6C9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.legal-links {
    margin-top: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8E6C9, #A5D6A7);
    transition: var(--transition);
    border-radius: 1px;
}

.legal-links a:hover {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
}

.legal-links a:hover::after {
    width: 100%;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-card {
        padding: 32px 12px 28px 12px;
        max-width: 98vw;
    }
    .hero-card h1 {
        font-size: 2rem;
    }
    .hero-card p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero .container {
        flex-direction: column;
        gap: 50px;
    }

    .about .container {
        flex-direction: column;
        gap: 50px;
    }

    .about-image {
        padding: 15px;
    }

    .about-image img {
        height: 400px;
    }

    .contact-form {
        max-width: 500px;
        padding: 50px 40px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: var(--transition);
        gap: 20px;
        padding: 40px 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav ul.active {
        left: 0;
    }

    .nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 10px;
        transition: var(--transition);
    }

    .nav ul li a:hover {
        background: rgba(76, 175, 80, 0.1);
        transform: translateX(5px);
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        padding: 10px;
        border-radius: 8px;
        transition: var(--transition);
    }

    .mobile-menu-btn:hover {
        background: rgba(76, 175, 80, 0.1);
    }

    .auth-buttons {
        display: none;
    }

    .nav ul .auth-buttons {
        display: none;
    }

    .nav ul.active .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding: 0 20px;
        width: 100%;
    }

    .nav ul.active .auth-buttons .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
        border-radius: 8px;
        transition: var(--transition);
    }

    .nav ul.active .auth-buttons .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .user-welcome {
        display: none;
    }

    .nav ul.active + .auth-buttons .user-welcome {
        display: block;
        text-align: center;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .hero {
        justify-content: center;
    }
    .hero-card {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }
    .hero-card h1,
    .hero-card p {
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-card .btn {
        align-self: center;
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .footer-links ul {
        grid-template-columns: 1fr;
        gap: 8px 0;
    }

    .testimonial-glass {
        padding: 24px 8px 24px 8px;
        border-radius: 18px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }

    .close-modal {
        top: -35px;
        right: 10px;
        font-size: 30px;
    }

    .journey-content h2 {
        font-size: 2rem;
    }

    .journey-content p {
        font-size: 1.1rem;
    }

    .journey-btn {
        font-size: 1.1rem;
        padding: 16px 40px;
    }

    .testimonial-cta .journey-btn {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-card {
        padding: 32px 12px 28px 12px;
        max-width: 98vw;
    }
    .hero-card h1 {
        font-size: 2rem;
    }
    .hero-card p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .contact-form {
        max-width: 95%;
        padding: 40px 30px;
        margin: 0 10px;
    }

    .contact-form h2 {
        font-size: 1.8rem;
    }

    .about-image {
        padding: 10px;
    }

    .about-image img {
        height: 300px;
    }

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

    .journey-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .journey-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .journey-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .testimonial-cta .journey-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }

    .nav ul {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 15px;
    }

    .nav ul li a {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .modal-content {
        margin: 8% auto;
        width: 98%;
        max-width: 99vw;
        padding: 10px;
        max-height: 95vh;
    }

    .close-modal {
        position: fixed;
        top: 18px;
        right: 18px;
        font-size: 32px;
        z-index: 2100;
    }
}

.footer-copyright {
    color: #fff !important;
    opacity: 1 !important;
}

/* Customers Section - Thin styling */
.customers-section {
    padding: 40px 0;
    text-align: center;
}

.customers-section h2 {
    margin-bottom: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
    font-size: 2.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: transparent;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    animation: slideIn 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    /* Custom Scrollbar for Webkit */
}

.modal-content::-webkit-scrollbar {
    width: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 100%);
    border-radius: 8px;
    min-height: 40px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.15);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.modal-content::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: #8BC34A rgba(255,255,255,0.08);
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 24px;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.close-modal:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-cta .journey-btn {
    background: var(--secondary-color) !important;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    padding: 18px 45px;
    margin: 0 auto;
}

.form-group select {
    width: 100%;
    padding: 18px 48px 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.13);
    color: #eaffea;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(76,175,80,0.05);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2343e97b" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548a1 1 0 0 1 1.415-.032L10 10.414l3.07-2.898a1 1 0 1 1 1.383 1.447l-3.762 3.55a1 1 0 0 1-1.383 0l-3.762-3.55a1 1 0 0 1-.032-1.415z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 22px 22px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
}

.form-group select option {
    background: rgba(44, 46, 45, 0.85);
    color: #eaffea;
    backdrop-filter: blur(6px);
    border-radius: 10px;
}

.form-group select option:checked {
    background: rgba(76, 175, 80, 0.7);
    color: #fff;
}

.user-welcome {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
}

.btn-logout {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.95rem;
    border: none;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* chatbot */

.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.chat-toggle {
    background-color: #4CAF50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  
    /* Add this animation */
    animation: breathing 3s ease-in-out infinite;
  }
  @keyframes breathing {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
      transform: scale(1.07);
      box-shadow: 0 0 15px 10px rgba(76, 175, 80, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
  }
    

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  animation-play-state: paused;
}

.chat-toggle:active {
  transform: scale(0.95);
}

.chat-toggle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.chat-toggle:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

.chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  transform-origin: bottom right;
  animation: fadeInScale 0.3s ease-out forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chat-header {
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.close-btn {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.chat-body {
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
  background-color: #f9f9f9;
  min-height: 200px;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.chat-body button {
  display: block;
  width: 100%;
  margin: 8px 0;
  padding: 12px;
  background: #e8f5e9;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.chat-body button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.chat-body button:hover {
  background: #c8e6c9;
  transform: translateX(5px);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.chat-body button:hover::after {
  transform: translateX(100%);
}

.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
  background: white;
}

.chat-input input {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input input:focus {
  background: #f5f5f5;
}

.chat-input button {
  padding: 0 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input button:hover {
  background-color: #388E3C;
  transform: scale(1.05);
}

.chat-input button:active {
  transform: scale(0.95);
}

/* Typing indicator animation */
.typing-indicator {
  display: flex;
  padding: 10px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin: 0 2px;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

select#interest {
    color: var(--dark-color);
    background-color: white;
  
    /* Custom dropdown arrow using SVG */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%234CAF50' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 20px 20px;
  
    padding-right: 3rem; /* space for arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
  }
  .social-links .fa-x-twitter {
    font-weight: 600; /* Makes the X slightly bolder */
}