@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7e7d7d;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    margin-left: -0.3rem;
    line-height: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #426b3b;
}

/* Search Bar Styles */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 250px;
}

.search-input:focus {
    border-color: #426b3b;
    box-shadow: 0 2px 10px rgba(66, 107, 59, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    color: #666;
    pointer-events: none;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 82px;
    right: -100%;
    width: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    z-index: 999;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #426b3b;
}

.mobile-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mobile-search-input {
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-search-input:focus {
    border-color: #426b3b;
    box-shadow: 0 2px 10px rgba(66, 107, 59, 0.1);
}

.mobile-search-icon {
    position: absolute;
    right: 1rem;
    color: #666;
    pointer-events: none;
}



/* Hero Section Styles */
.hero {
    margin-top: 80px; /* Account for fixed header */
    min-height: 90vh;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #49261d;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.3s;
    line-height: 1.2;
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-color: #fff;
    padding: 3rem 3rem;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.hero-subtitle-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    text-wrap: nowrap;
    color: #49261d;
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.8s;
    line-height: 1.4;
}



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

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 1400px;
    padding: 0 4rem;
}

.hero-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.hero-card:nth-child(1) { animation-delay: 0.5s; }
.hero-card:nth-child(2) { animation-delay: 0.6s; }
.hero-card:nth-child(3) { animation-delay: 0.7s; }
.hero-card:nth-child(4) { animation-delay: 0.8s; }
.hero-card:nth-child(5) { animation-delay: 0.9s; }
.hero-card:nth-child(6) { animation-delay: 1s; }

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card-image {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 10px;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-card-text {
    padding: 0.8rem 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #50652e;
}


.cta-button {
    display: inline-block;
    width: auto;
    background-color: #333;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Concepts Section Styles */
.concepts-section {
    padding: 2rem 0 4rem 0;
    background-color: #fff;
    min-height: 60vh;
}

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

.concepts-section-title {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #49261d;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.concepts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.concepts-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
}

.concepts-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
    position: relative;
}

.concepts-bg-image {
    width: 100%;
    max-width: 400px;
    height: 700px;
    object-fit: cover;
    border-radius: 20%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.concepts-bg-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.concept-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.concept-title {
    font-size: 2rem;
    font-weight: bold;
    color: #49261d;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.concept-description {
    font-size: 1.1rem;
    color: #49261d;
    line-height: 1.6;
    font-weight: 400;
}

/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 4rem 0;
    min-height: 80vh;
    background-color: #fff;
    position: relative;
    background-image: url('assets/background-3.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.highlight {
    color: #4a7c59;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-column,
.vision-column {
    text-align: left;
}

.column-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #224f19;
    margin: 0 auto 1.5rem auto;
}

.column-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.background-graphic {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

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

/* Services Section Styles */
.services-section {
    padding: 2rem 2rem;
    background-color: #fff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating CTA Button Styles */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10001;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFade 0.8s ease-out forwards;
    animation-delay: 2s;
    will-change: transform, opacity;
}

.floating-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    background-color: transparent;
    background-image: url('assets/floating-cta-3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    border: none;
    cursor: pointer;
    outline: none;
}

.floating-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-cta-button:hover::before {
    opacity: 1;
}

.floating-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Services Overlay Styles */
.services-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.services-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide floating CTA when services overlay is active */
body.overlay-active .floating-cta,
.services-overlay.active ~ .floating-cta {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2001;
}

.overlay-close-btn:hover {
    background-color: #426b3b;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.overlay-cards-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .overlay-cards-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 1.2rem;
        padding: 1rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .service-floating-card {
        width: 250px !important;
        padding: 1.5rem 1.2rem;
        margin: 0 auto;
        max-width: 90%;
    }

    .service-card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
    }

    .service-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-card-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
}

.service-floating-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0) translateY(50px);
    opacity: 0;
}

.services-overlay.active .service-floating-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.services-overlay.active .service-floating-card:nth-child(1) {
    transition-delay: 0.1s;
}

.services-overlay.active .service-floating-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-overlay.active .service-floating-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-floating-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.service-card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-floating-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-btn {
    background: linear-gradient(135deg, #426b3b, #50652e);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 107, 59, 0.3);
}

.service-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 107, 59, 0.4);
    background: linear-gradient(135deg, #50652e, #426b3b);
}

/* Responsive Design */

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .header-nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .header-cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }


    .search-bar {
        display: none;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
        background-image: url('assets/hero-bg.png');
    }

    .hero-main-title {
        font-size: 2.5rem;
        font-family: 'Playfair Display', serif;
        padding: 1.5rem 2rem;
        max-width: 500px;
    }

    .hero-subtitle-text {
        position: static;
        text-align: center;
        margin-top: 2rem;
        max-width: 100%;
        font-size: 1.4rem;
    }

    .hero-cards-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        grid-column: span 2;
    }

    .hero-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .hero-card:nth-child(5) {
        grid-column: 4 / 6;
    }

    .hero-card-image {
        height: 120px;
    }

    .hero-card-image img {
        object-fit: contain;
    }

    .hero-card-text {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
    }


    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-main-title {
        font-size: 2.5rem;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-us-title {
        font-size: 2.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-left,
    .contact-right {
        text-align: center;
    }

    .contact-right {
        justify-content: center;
    }

    .contact-tagline {
        font-size: 1.5rem;
    }

    .concepts-section-title {
        font-size: 2.5rem;
        padding-bottom: 2rem;
    }

    .concept-title {
        font-size: 1.5rem;
    }

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

    .concepts-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .concepts-image {
        height: 300px;
        order: -1;
    }

    .concepts-bg-image {
        max-width: 300px;
        height: 400px;
    }

    .floating-cta {
        bottom: 6rem;
        right: 1.5rem;
    }

    .floating-cta-button {
        width: 160px;
        height: 80px;
    }

    /* Adjust chat icon for tablet */
    #chat_icon {
        bottom: 150px !important;
        right: 18px !important;
    }

    button#chat_icon.ant-btn.ant-btn-icon-only {
        bottom: 120px !important;
        right: 18px !important;
    }

    .chatbot-widget .expand-icon {
        bottom: 160px !important;
    }

    /* Reduce height of bottom bar container */
    #bottom-bar-container {
        height: 45px !important;
        min-height: 45px !important;
        max-height: 45px !important;
    }

    .overlay-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .overlay-cards-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 1rem;
        padding: 0.8rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .service-floating-card {
        width: 200px !important;
        padding: 1.2rem 1rem;
        margin: 0 auto;
        max-width: 85%;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.8rem;
    }

    .service-card-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .service-card-desc {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .service-card-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .overlay-cards-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.6rem;
        padding: 0.5rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .service-floating-card {
        width: 160px !important;
        padding: 0.8rem 0.6rem;
        margin: 0 auto;
        max-width: 75%;
    }

    .service-card-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.5rem;
    }

    .service-card-title {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .service-card-desc {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .service-card-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        top: 70px;
    }

    .header-nav {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .header-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 4rem 1rem 2rem 1rem;
        background-image: url('assets/hero-bg-mobile.png');
    }

    .hero-main-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 3rem;
        font-family: 'Playfair Display', serif;
        padding: 1rem 0;
        max-width: 250px;
    }

    .hero-subtitle-text {
        text-wrap: wrap;
        padding-top: 2rem;
        font-size: 1.2rem;
    }

    .hero-cards-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.6rem;
        padding: 0 0.5rem;
    }

    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        grid-column: span 2;
    }

    .hero-card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .hero-card:nth-child(5) {
        grid-column: 4 / 6;
    }

    .hero-card-image {
        height: 100px;
    }

    .hero-card-image img {
        object-fit: contain;
    }


    .hero-card-text {
        font-size: 0.6rem;
        padding: 0.4rem 0.2rem;
        line-height: 1.2;
    }


    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        align-self: center;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }


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

    .column-title {
        font-size: 1.3rem;
    }

    .mission-vision-section {
        padding: 4rem 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card-title {
        font-size: 1.3rem;
    }

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

    .why-us-title {
        font-size: 2rem;
    }

    .contact-tagline {
        font-size: 1.5rem;
    }

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

    .feature-icon {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 0.9rem;
    }

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

    .concept-title {
        font-size: 1.3rem;
    }

    .concept-description {
        font-size: 0.9rem;
    }

    .concepts-image {
        height: 250px;
    }

    .concepts-bg-image {
        max-width: 250px;
        height: 300px;
    }

    .floating-cta {
        bottom: 5.5rem;
        right: 1rem;
    }

    .floating-cta-button {
        width: 140px;
        height: 70px;
    }

    /* Adjust chat icon for mobile */
    #chat_icon {
        bottom: 120px !important;
        right: 15px !important;
    }

    button#chat_icon.ant-btn.ant-btn-icon-only {
        bottom: 90px !important;
        right: 15px !important;
    }

    .chatbot-widget .expand-icon {
        bottom: 130px !important;
    }

    /* Reduce height of bottom bar container */
    #bottom-bar-container {
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }

    .overlay-close-btn {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .overlay-cards-container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.8rem;
        padding: 0.6rem;
        max-height: 90vh;
        overflow-y: auto;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .service-floating-card {
        width: 180px !important;
        padding: 1rem 0.8rem;
        margin: 0 auto;
        max-width: 80%;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.6rem;
    }

    .service-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .service-card-desc {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .service-card-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Bottom Bar Container Styles */
#bottom-bar-container {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
}

#chat_icon {
    bottom: 160px !important; /* Move chatbot higher to create more gap */
    right: 15px !important; /* Move slightly left to avoid edge */
    z-index: 999 !important;
}

/* Additional targeting for chatbot button with ant-btn classes */
button#chat_icon.ant-btn.ant-btn-icon-only {
    bottom: 150px !important;
    right: 20px !important;
    z-index: 999 !important;
}

.chatbot-widget .expand-icon {
    bottom: 190px !important;
    left: -26px !important;
}

/* Footer Spacer */
.footer-spacer {
    height: 150px;
    width: 100%;
    background-color: #3e6440;
    scroll-margin-top: 150px;
}

/* Footer Styles */
.footer {
    background-color: #3e6440;
    color: #b0b0b0;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.footer-address-title {
    font-size: 1rem;
    font-weight: 600;
    color: #dbdada;
    margin: 0;
    padding: 0;
}

.footer-address {
    font-size: 0.95rem;
    color: #cacaca;
    font-style: normal;
    line-height: 1.8;
    margin: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #cccaca;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-link:hover {
    color: #fff;
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6e886f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #6da870;
    transform: translateY(-2px);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }

    .footer-spacer {
        height: 120px;
    }

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

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .social-icon-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }

    .footer-spacer {
        height: 100px;
    }

    .footer-container {
        gap: 2rem;
    }

    .footer-brand {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-address {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .social-icon-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}