/* Global Styles */
:root {
    --primary: #2a6b3f;
    --secondary: #f8a01c;
    --light: #f9f9f9;
    --dark: #333;
    --gray: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

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

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1f5230;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #d88a0e;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================
   ENHANCED HERO SECTION
   Add this CSS to your style.css file (replace existing hero styles)
   ========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
    padding-top: 100px;
    /* Match header height */
    z-index: 1;
    /* Lower than header */
}

/* Background Image Option - Uncomment and add your image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/my-new-bg.jpg');
    /* Add your image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

/* Animated Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(26, 77, 46, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    right: 15%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 20%;
    bottom: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    right: 25%;
    bottom: 30%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 50%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 19s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Animated Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 160, 28, 0.2);
    border: 2px solid rgba(248, 160, 28, 0.4);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 4;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Typography */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem !important;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem !important;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn span {
    position: relative;
    z-index: 1;
}

.hero-buttons .btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero-buttons .btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.hero-buttons .btn-primary:hover {
    background: #ffb32e;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(248, 160, 28, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

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

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

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

.delay-4 {
    animation-delay: 0.8s;
}

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

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 30px;
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}


.home .container {
    position: relative;
    z-index: 2;
    /* keeps content above overlay */
}

/*  About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Products Section */
.products {
    background-color: #f5f5f5;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* Career Section */
.career-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.career-content p {
    margin-bottom: 30px;
    color: var(--gray);
}

.open-positions {
    margin-top: 40px;
}

.position {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.position h3 {
    color: var(--primary);
    margin-bottom: 10px;
}



/* Blog Section */
.blog {
    background-color: #f5f5f5;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.contact-form {
    flex: 1;
}


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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a i {
    pointer-events: none;
}

.social-links a:nth-child(1):hover {
    background: #1877f2;
}

.social-links a:nth-child(2):hover {
    background: #1da1f2;
}

.social-links a:nth-child(3):hover {
    background: #0077b5;
}

.social-links a:nth-child(4):hover {
    background: #e4405f;
}


.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ddd;
}

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

    .contact-content {
        flex-direction: column;
    }
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Newsletter Form Styles */
.footer-newsletter-form .form-group {
    margin-bottom: 15px;
}

.footer-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-form .btn {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form .btn:hover {
    background: #ffb32e;
    transform: translateY(-2px);
}

/* Success message styling */
.form-success {
    color: #4CAF50;
    margin-top: 10px;
    font-size: 0.9rem;
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.whatsapp-float::after {
    display: none !important;
}

.whatsapp-float:hover {
    text-decoration: none;
    /* ← Ensure no underline on hover */
    color: #FFF;
    /* ← Keep white color on hover */
    background-color: #128C7E;
    /* ← Darker green on hover */
    transform: scale(1.1);
    /* ← Add a little scale effect */
    transition: all 0.3s ease;
}

/* Logo Optimization - Logo Only */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Reduced for a sleeker navbar */
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    /* Subtle hover effect */
}

/* Adjust header container padding for better balance */
.header-container {
    padding: 5px 0;
    /* Reduced vertical padding */
}

/* Responsive logo sizing */
@media (max-width: 992px) {
    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    .header-container {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* Hero Section Typography */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Tablet */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* About Section Enhancements */
.about-list {
    margin: 20px 0;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
}

.about-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.about-text h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.5;
    padding-left: 0;
}

.benefits-list li::before {
    content: "";
    /* Remove bullet for benefits list */
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text h4 {
        font-size: 1.3rem;
    }

    .benefits-list li {
        font-size: 0.95rem;
    }
}

/* Story Section */
.story {
    padding: 80px 0;
    background-color: var(--light);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: left;
}

.story-highlight {
    font-weight: 700 !important;
    color: var(--primary) !important;
    font-style: italic;
    text-align: center !important;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin-top: 30px !important;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

.value-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.value-card li {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 0;
    position: relative;
}

.value-card li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.value-card strong {
    color: var(--primary);
}

/* Tablet */
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Mobile adjustments */
@media (max-width: 767px) {
    .story {
        padding: 60px 0;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        font-size: 2.5rem;
    }
}

/* Products Section Enhancements */
.product-feature {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-feature.reverse {
    flex-direction: row-reverse;
}

.product-feature-image {
    flex: 1;
}

.product-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-feature-content {
    flex: 1.2;
}

.product-feature-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-usp {
    color: var(--gray);
    margin: 20px 0;
    font-style: italic;
}

.usp-highlight {
    color: var(--primary);
    font-weight: 600;
}

.product-feature-content h4 {
    color: var(--primary);
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.nutrition-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.nutrition-list li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.nutrition-list li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-benefit {
    color: var(--gray);
    margin-top: 20px;
    font-weight: 600;
}

/* Additional Products Grid */
.additional-products {
    margin-top: 60px;
}

.additional-products .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.additional-products .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.additional-products .product-info {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.additional-products .product-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.additional-products .product-tagline {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.additional-products .product-usp {
    margin: 15px 0;
}

.additional-products .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-feature {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .product-feature.reverse {
        flex-direction: column;
    }

    .product-feature-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .product-feature {
        padding: 25px;
        margin-bottom: 60px;
    }

    .product-feature-content h3 {
        font-size: 1.5rem;
    }

    .additional-products {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .additional-products .product-info {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .product-feature {
        padding: 20px;
        margin-bottom: 50px;
    }

    .product-feature-content h3 {
        font-size: 1.3rem;
    }

    .product-tagline {
        font-size: 1.1rem;
    }
}

/* Quality Comparison Section */
.quality-comparison {
    padding: 80px 0;
    background-color: var(--light);
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.comparison-table th.highlight-column {
    background: var(--secondary);
    color: var(--dark);
}

.table-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    color: var(--gray);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background-color: #e8f5e8;
    transition: background-color 0.3s ease;
}

.highlight-cell {
    background-color: rgba(248, 160, 28, 0.15) !important;
    color: var(--dark) !important;
    font-weight: 600;
    border-left: 3px solid var(--secondary) !important;
    border-right: 3px solid var(--secondary) !important;
}

.value-note {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 5px;
    font-style: italic;
}

/* Table Legend */
.table-legend {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.rajroop-color {
    background-color: var(--secondary);
}

.legend-text {
    color: var(--dark);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quality-comparison {
        padding: 60px 0;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .table-subtitle {
        font-size: 0.7rem;
    }

    .value-note {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
    }

    .table-container {
        margin: 30px -15px;
        border-radius: 0;
    }

    .legend-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Career Section */
.career {
    padding: 80px 0;
    background-color: var(--light);
}

.career-content {
    max-width: 1000px;
    margin: 0 auto;
}

.career-intro {
    text-align: center;
    margin-bottom: 50px;
}

.career-intro p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.career-intro h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-column {
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: var(--gray);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Positions Grid */
.openings-title {
    color: var(--primary);
    text-align: center;
    margin: 60px 0 40px 0;
    font-size: 2rem;
    font-weight: 600;
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.position-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary);
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.position-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.position-location {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.position-card .btn {
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.position-card .btn:hover {
    background: #1f5230;
    transform: translateY(-2px);
}

/* Career Contact */
.career-contact {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.career-contact p {
    color: var(--gray);
    margin: 0;
    font-size: 1.1rem;
}

.career-contact strong {
    color: var(--primary);
}

/* Responsive Design */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

@media (min-width: 992px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .career {
        padding: 60px 0;
    }

    .career-intro h3 {
        font-size: 1.5rem;
    }

    .openings-title {
        font-size: 1.7rem;
        margin: 40px 0 30px 0;
    }

    .position-card {
        padding: 25px;
    }

    .position-content h4 {
        font-size: 1.2rem;
    }

    .benefits-list li {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .position-card {
        padding: 20px;
    }

    .career-contact {
        padding: 20px;
    }

    .career-contact p {
        font-size: 1rem;
    }
}

/* Distributors Section */
.distributors {
    padding: 80px 0;
    background-color: var(--light);
}

.distributors-content {
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-section,
.applicants-section {
    text-align: center;
    margin-bottom: 50px;
}

.partnership-section h3,
.applicants-section h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid,
.applicants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-column,
.applicants-column {
    text-align: left;
}

.benefits-list,
.applicants-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.applicants-list li {
    color: var(--gray);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "★";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.applicants-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Distributors CTA */
.distributors-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.distributors-cta p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-large {
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    background: var(--secondary) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-large:hover {
    background: #d88a0e !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(248, 160, 28, 0.3) !important;
}

/* Responsive Design */
@media (min-width: 768px) {

    .benefits-grid,
    .applicants-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .distributors-cta {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .distributors {
        padding: 60px 0;
    }

    .partnership-section h3,
    .applicants-section h3 {
        font-size: 1.5rem;
    }

    .benefits-list li,
    .applicants-list li {
        padding-left: 25px;
        font-size: 1rem;
    }

    .distributors-cta {
        padding: 30px 25px;
    }

    .distributors-cta p {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {

    .benefits-grid,
    .applicants-grid {
        gap: 20px;
    }

    .benefits-list li,
    .applicants-list li {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .distributors-cta {
        padding: 25px 20px;
    }
}

/* Products Carousel */
.products-carousel {
    position: relative;
    margin: 50px 0;
    padding: 0 50px;
}

.products-scroll-container {
    overflow: hidden;
    border-radius: 15px;
}

.products-scroll {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.products-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.product-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-tagline {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.nutrition-highlights {
    margin: 20px 0;
}

.nutrition-highlights h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.nutrition-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nutrition-highlights li {
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 0.9rem;
}

.nutrition-highlights li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-benefit {
    color: var(--dark);
    font-weight: 500;
    margin: 15px 0;
    padding: 10px;
    background: rgba(42, 107, 63, 0.05);
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .products-carousel {
        padding: 0 40px;
    }

    .product-card {
        min-width: 300px;
        padding: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-scroll {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-carousel {
        padding: 0 30px;
    }

    .product-card {
        min-width: 280px;
        padding: 15px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

/* Products Carousel - Updated CSS */
.products-carousel {
    position: relative;
    margin: 50px 0;
    padding: 0 60px;
    /* Increased padding for buttons */
}

.products-scroll-container {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.products-scroll {
    display: flex;
    gap: 30px;
    padding: 25px 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.products-scroll:active {
    cursor: grabbing;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 100%;
    max-width: 100%;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Carousel Buttons - More prominent */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: bold;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(42, 107, 63, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .products-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px;
    }
}

/* Form Success Message */
.form-success {
    color: var(--primary);
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(42, 107, 63, 0.1);
    border-radius: 5px;
    border-left: 4px solid var(--primary);
}

/* Social Links Fix */
.social-links a i {
    font-style: normal;
}

/* ==========================
   Newsletter Form Improvements
   ========================== */

/* Footer Newsletter Form */
.footer-newsletter-form {
    margin-top: 15px;
}

.footer-newsletter-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.footer-newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(248, 160, 28, 0.2);
}

.footer-newsletter-form .btn {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.footer-newsletter-form .btn:hover {
    background: #ffb32e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 160, 28, 0.3);
}

/* Success message styling */
.form-success {
    color: #4CAF50;
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    padding: 8px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
}

/* ==========================
   Contact Form Improvements
   ========================== */

.contact-form {
    flex: 1;
}

.contact-form form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 107, 63, 0.15);
    transform: translateY(-1px);
}

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

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(42, 107, 63, 0.3);
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 107, 63, 0.4);
}

/* Form Success Message */
.form-success {
    color: var(--primary);
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(42, 107, 63, 0.1);
    border-radius: 6px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #2ecc71;
}

/* ==========================
   Responsive Improvements
   ========================== */

@media (max-width: 992px) {
    .contact-form form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form form {
        padding: 25px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }

    .footer-newsletter-form input {
        padding: 10px 12px;
    }

    .footer-newsletter-form .btn {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .contact-form form {
        padding: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-form .btn {
        padding: 12px;
    }
}

/* ==========================
   Contact Form Styling Fix
   ========================== */

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 107, 63, 0.15);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.95rem;
}

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

.contact-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(42, 107, 63, 0.3);
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 107, 63, 0.4);
}

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

    .contact-form form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form form {
        padding: 25px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .contact-form form {
        padding: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-form .btn {
        padding: 12px;
    }
}