@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root {
    /* Primary Theme Colors - Change these to update the entire theme */
    --brand-color:  rgba(43, 65, 52, 0.95);          /* Main brand color */
    --brand-color-light: #31734c;    /* Lighter shade */
    --brand-color-dark: #219653;     /* Darker shade */
    --brand-color-fade: #daf1e4;     /* Very light shade for backgrounds */
    
    /* Functional Colors */
    --text-color: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --shadow-color: rgba(39, 174, 96, 0.1);
    --shadow-color-hover: rgba(39, 174, 96, 0.2);
    --heading-font: 'Plus Jakarta Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--heading-font);
}

.navbar {
    background-color: rgba(43, 65, 52, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
    color: var(--text-light) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback styles when video fails to load */
.hero-bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.video-fallback .hero-bg-video::after {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(115, 127, 120, 0.9),
        rgba(54, 67, 59, 0.8)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.animate-text h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.typed-container {
    height: 60px;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.typed-text {
    font-size: 2rem;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: #fff;
    margin-left: 0.2rem;
    animation: blink 1s infinite;
    vertical-align: middle;
}

.cursor.typing {
    animation: none;
}

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

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.btn-primary:hover {
    background-color: var(--brand-color-dark);
    border-color: var(--brand-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--brand-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

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

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

@media (max-width: 768px) {
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        position: static;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 20px;
        transform: none;
        left: auto;
        overflow: hidden;
    }
    
    .animate-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    
    .typed-container {
        min-height: 50px;
        height: auto;
        margin: 1rem 0;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .typed-text {
        font-size: 1.2rem;
        line-height: 1.2;
        width: auto;
        display: inline;
        word-break: normal;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0.5rem 0 1rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-buttons {
        margin: 1rem auto 0;
        flex-direction: column;
        width: 100%;
        max-width: 200px;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

.section {
    padding: 80px 0;
}

.section-title {
    color: var(--brand-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.value-card {
    background: white;
    padding: 30px;
    margin: 15px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-color);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
    border: 2px solid transparent;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--brand-color);
    border-radius: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
    transition: all 0.4s ease;
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--brand-color);
    border-radius: 15px;
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
    transition: all 0.4s ease;
}

.team-member:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.team-member:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.team-member.animate {
    opacity: 1;
    transform: scale(1);
}

.team-image-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border: 3px solid var(--brand-color);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(39, 174, 96, 0.95), rgba(39, 174, 96, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: none;
}

.team-member:hover .team-overlay {
    opacity: 1;
    transform: none;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.team-social .social-link {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.team-social .social-link:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .team-member {
        margin-bottom: 2rem;
    }
    .team-image-wrapper {
        width: 180px;
        height: 180px;
    }
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-info.animate {
    transform: translateY(0);
    opacity: 1;
}

footer {
    background-color: var(--brand-color);
    color: white;
    padding: 30px 0;
}

/* Enhanced Animations and Styles */
.service-item {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

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

.service-item:hover {
    background: var(--brand-color-fade);
    transform: translateX(10px);
}

.client-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-list li:hover {
    background: var(--brand-color-fade);
    transform: translateX(10px);
}

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

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--brand-color-light);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color-dark);
}

.client-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 1rem;
    text-align: center;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color-hover);
}

.client-logo {
    width: 100%;
    height: 120px; /* Fixed height for logos */
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin-bottom: 1rem;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
}

.client-name {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0.8;
    width: 100%;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover .client-name {
    color: var(--brand-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .team-image {
        height: 300px;
    }
    
    .client-logo {
        height: 100px;
    }
    
    .client-name {
        font-size: 0.8rem;
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-color);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-color-fade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--brand-color);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    justify-content: center;
}

.feature-item i {
    font-size: 1rem;
}

/* Animation for cards */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Add this helper class for easy color updates */
.brand-text { color: var(--brand-color) !important; }
.brand-bg { background-color: var(--brand-color) !important; }
.brand-border { border-color: var(--brand-color) !important; }

.values-section-1 {
    position: relative;
    overflow: hidden;
}

.values-section-1 .values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.values-section-1 .value-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.values-section-1 .value-content {
    position: relative;
    z-index: 2;
}

.values-section-1 .value-item i {
    font-size: 2.5rem;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.values-section-1 .slanted-line {
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 2px;
    background: var(--brand-color);
    transform: rotate(15deg);
}

.values-section-1 .value-item:hover .value-content {
    transform: translateY(-10px);
}

.values-section-1 .value-content {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .values-section-1 .value-item {
        flex: 100%;
    }
    .values-section-1 .slanted-line {
        display: none;
    }
}

.values-section-2 {
    background: var(--bg-light);
}

.hex-container {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hex-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hex-item {
    width: 250px;
    height: 220px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
    position: relative;
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.hex-item:hover {
    transform: translateY(-10px);
    background: var(--brand-color);
    color: white;
}

.hex-item:hover i {
    color: white;
}

.hex-item i {
    font-size: 2rem;
    color: var(--brand-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .hex-row {
        flex-direction: column;
    }
}

.what-we-do-section {
    background: linear-gradient(to bottom, var(--bg-light) 50%, white 50%);
}

.about-content {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.commitment-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--brand-color-fade);
    border-radius: 10px;
}

.commitment-box i {
    font-size: 2rem;
    color: var(--brand-color);
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-color-fade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--brand-color);
}

.feature-box:hover .feature-icon i {
    color: white;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 3px solid var(--brand-color);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    max-width: 200px;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
    background: var(--brand-color);
}

.stat-inner {
    transition: all 0.3s ease;
}

.stat-box:hover .stat-inner {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-number {
    color: white;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: white;
}

@media (max-width: 768px) {
    .stat-box {
        max-width: 150px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-color-fade);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--brand-color);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--brand-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon i {
    color: white;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon.whatsapp {
    background: #27a455;
}

.contact-method-icon.phone {
    background: var(--brand-color);
}

.contact-method-icon i {
    font-size: 2rem;
    color: white;
}

.contact-method-content {
    flex-grow: 1;
}

.whatsapp-btn, .phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn {
    background: #27a455;
    color: white;
}

.phone-btn {
    background: var(--brand-color);
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.whatsapp-btn:hover, .phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .contact-method-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .phone-numbers {
        align-items: center;
    }
}

.footer-section {
    background-color: var(--brand-color);
    color: var(--text-light);
    padding: 60px 0 30px;
    position: relative;
}

.footer-brand h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-indicators .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;  /* Align icons to the right */
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: translateX(-10px);  /* Changed direction for right alignment */
    background: rgba(255, 255, 255, 0.2);
}

.icon-item i {
    font-size: 1.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-icons {
        align-items: center;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-brand {
        text-align: center;
    }

    .icon-item:hover {
        transform: translateX(0);
    }
}

/* Section Accents and Separators */
.section {
    position: relative;
    overflow: hidden;
}

/* Diagonal Section Separator */
.section-diagonal {
    position: relative;
    padding: 100px 0;
    background: var(--bg-light);
}

.section-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
}

/* Section Background Variations */
.section-primary {
    background: linear-gradient(135deg, var(--brand-color-fade) 0%, white 100%);
}

.section-secondary {
    background: linear-gradient(45deg, white 0%, var(--brand-color-fade) 100%);
}

.section-pattern {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2327ae60' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-dots {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2327ae60' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* Section Side Accents */
.section-accent-left {
    border-left: 5px solid var(--brand-color-fade);
}

.section-accent-right {
    border-right: 5px solid var(--brand-color-fade);
}

/* Update specific sections */
#about {
    background: linear-gradient(135deg, var(--brand-color-fade) 0%, white 100%);
}

#values-1 {
    background: white;
}

#values-2 {
    background: var(--bg-light);
    position: relative;
}

#values-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2327ae60' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#services-alt {
    background: linear-gradient(45deg, white 0%, var(--brand-color-fade) 100%);
}

#team {
    background: var(--bg-light);
    position: relative;
}

.clients-section {
    background: white;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2327ae60' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

#contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.value-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.value-content {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--brand-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-item h3 {
    margin: 1rem 0;
    color: var(--text-color);
}

.value-item p {
    color: var(--text-muted);
}

.slanted-line {
    position: absolute;
    top: 20%;
    right: -1px;
    height: 60%;
    width: 2px;
    background: var(--brand-color);
    transform: rotate(15deg);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.value-item:hover .value-content {
    transform: translateY(-10px);
}

.value-item:hover i {
    color: var(--brand-color-dark);
}

.value-item:hover .slanted-line {
    height: 70%;
    opacity: 1;
    background: var(--brand-color-dark);
}

@media (max-width: 768px) {
    .value-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .slanted-line {
        display: none;
    }
}

.license-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.license-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.license-item {
    position: relative;
    width: 250px;  /* Reduced width */
    height: 150px;  /* Reduced height for rectangular shape */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.license-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Changed to contain to show full logo */
    transition: transform 0.3s ease;
    padding: 1rem;  /* Add padding to prevent image from touching edges */
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

.license-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(39, 174, 96, 0.95), rgba(39, 174, 96, 0.8));
    padding: 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.license-item:hover .license-overlay {
    transform: translateY(0);
}

.license-overlay h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.license-overlay p {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Update the hex-container and related styles */
.hex-container {
    padding-top: 2rem;  /* Add some spacing at the top */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Make sure the section title is visible */
#values-2 .section-title {
    position: relative;
    z-index: 2;  /* Ensure it's above any background elements */
    margin-bottom: 2rem;  /* Add more space below the title */
    color: var(--text-color);  /* Make sure the color contrasts with background */
}

/* Update the section background */
#values-2.section {
    position: relative;
    background: var(--bg-light);  /* Ensure there's a background color */
    padding: 80px 0;  /* Maintain consistent padding */
}

/* Ensure the container has proper spacing */
#values-2 .container {
    position: relative;
    z-index: 1;
}

/* Update license section styles */
#licenses.section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--brand-color-fade) 100%);
    position: relative;
}

#licenses .section-title {
    margin-bottom: 3rem;  /* Add more space below the title */
}

#licenses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2327ae60' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

#licenses .container {
    position: relative;
    z-index: 1;
}

/* Keep existing license item styles */
.license-item {
    background: white;  /* Ensure items stand out against new background */
}

/* Update team section styles */
#team.section {
    background: linear-gradient(135deg, var(--brand-color-fade) 0%, var(--bg-light) 100%);
    position: relative;
}

#team .section-title {
    margin-bottom: 3rem;
}

#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2327ae60' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

#team .container {
    position: relative;
    z-index: 1;
}

/* Ensure team cards stand out against the new background */
.team-member {
    background: white;  /* Ensure white background for contrast */
}

/* Optional: Add a subtle shadow to make cards pop more */
.team-member {
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

/* WhatsApp button in navigation */
.btn-whatsapp {
    background-color: #27a455;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.btn-whatsapp:hover {
    background-color: #27a425;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.contact-number {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .btn-whatsapp {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .contact-number {
        text-align: center;
    }
}

/* Add floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;  /* Hidden by default, shown on mobile */
}

.floating-whatsapp .btn-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp .btn-whatsapp i {
    font-size: 24px;
}

.floating-whatsapp .contact-number {
    display: none;  /* Hide number in floating button */
}

/* Show floating button on mobile */
@media (max-width: 991px) {
    .floating-whatsapp {
        display: block;
    }
    
    /* Hide the navbar WhatsApp button on mobile */
    .navbar .btn-whatsapp {
        display: none;
    }
}

/* Dropdown styles */
.dropdown-menu {
    background: rgba(43, 65, 52, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
}

.dropdown-item {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--brand-color-light);
    color: white;
    transform: translateX(5px);
}

/* Ensure dropdown is visible on mobile */
@media (max-width: 991px) {
    .dropdown-menu {
        background: transparent;
        border: none;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        color: white;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--brand-color-light);
    }
}

/* Update mobile navigation styles */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: right;
        padding: 1rem;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);  /* Add divider */
        padding: 0.5rem 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;  /* Remove border from last item */
    }
    
    .nav-link {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        text-align: left;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        text-align: right;
        padding: 0.5rem 1.5rem 0.5rem 0;
        color: rgba(255, 255, 255, 0.8);  /* Slightly dimmed for hierarchy */
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: white;
        transform: translateX(-5px);
    }
    
    /* Adjust dropdown toggle caret */
    .dropdown-toggle::after {
        float: left;
        margin-top: 12px;
    }
    
    /* Add hover effect for nav items */
    .nav-link:hover {
        color: white;
        transform: translateX(-5px);
    }
    
    /* Remove default nav-link after effect on mobile */
    .nav-link::after {
        display: none;
    }
}

.contact-email-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.contact-email-link:hover {
    color: var(--brand-color);
}

.email-cta {
    display: block;
    font-size: 0.9rem;
    color: var(--brand-color);
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-email-link:hover .email-cta {
    opacity: 1;
    transform: translateY(0);
}

.email-cta i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Fix particles canvas positioning */
.particles-js-canvas-el {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    z-index: 1;
}

.hero-content {
    z-index: 2;
}
