/* index.css */
@import url('./base.css');
html, body {
  overflow-x: hidden;
}
* {
  font-family: 'Poppins', sans-serif !important;
}

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

body {
    
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}



/* Hero Section */
.hero {
   
    min-height: calc(100vh - 82px);
    background: linear-gradient(135deg, #8B9A7A 0%, #6B7B5A 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    padding: 2.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: white;
    color: #6B7B5A;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex; /* Changed from inline-block */
    align-items: center; /* Centers text vertically */
    justify-content: center; /* Centers text horizontally */
    line-height: 1; /* Override inherited line-height */
    /* opacity: 0.9; */
}

.btn-primary:hover {
    opacity: 0.8;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #6B7B5A;
   
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

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

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    min-width: 220px;         /* Sets a minimum width */
    max-width: 280px;          /* Prevents overflow */
    width: auto;              /* Allows natural expansion */
    white-space: normal;      /* Ensures text wraps */
}

.hero-card:nth-child(1) {
    top: 10px;
    left: 110px;
   z-index: 2;
    animation-delay: 0s;
}

.hero-card:nth-child(2) {
    top: 240px;
    right: 10px;
   z-index: 1;
    animation-delay: 2s;
}

.hero-card:nth-child(3) {
    bottom: 50px;
    left: 20px;
   z-index: 0;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}


.join-team-centered {
    background: #f8f9fa;
    color: #333;
    position: relative;
    overflow: hidden;
}

        .join-team-container {
            width: 100%;
            margin: 0 auto;
            padding: 4rem 3vw;
            text-align: center;
            position: relative;
            z-index: 2;
            box-sizing: border-box;
        }

        .join-team-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            color: #6B7B5A;
        }

        .join-team-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .join-team-desc {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            color: #666;
            margin-left: auto;
            margin-right: auto;
            max-width: 800px;
            text-align: center;
        }

        .join-team-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .join-team-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            color: #333;
        }

        .join-team-feature:hover {
            /* No hover effect */
        }

        .join-team-feature i {
            font-size: 1.5rem;
            flex-shrink: 0;
            color: #6B7B5A;
            transition: color 0.3s ease;
        }

        .join-team-feature:hover i {
            /* No hover effect */
        }

        .join-team-feature span {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .join-team-button {
            padding: 1.2rem 2.5rem;
            background: #6B7B5A;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
            box-shadow: none;
        }

        .join-team-button:hover {
            background: #5a6b49;
            box-shadow: 0 10px 30px rgba(107, 123, 90, 0.3);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .join-team-container {
                padding: 3rem 1rem;
            }

            .join-team-icon {
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }

            .join-team-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .join-team-desc {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .join-team-features {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .join-team-feature {
                padding: 1rem;
                text-align: left;
            }

            .join-team-feature span {
                font-size: 1rem;
            }

            .join-team-button {
                padding: 1.2rem 2.5rem;
                font-size: 1.1rem;
                width: 100%;
                max-width: 300px;
            }
        }


/* Full Width Sections */
.section-full {
    width: 100%;
    min-height: calc(100vh - 82px); /* Use min-height instead of height */
    display: flex;
    align-items: center;
    background: white;
}

.section-alternate {
    background: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    height: 100%; /* Use full available height */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    padding: 2rem 3vw; /* Add more horizontal padding for all screens */
}

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

.section-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    font-size: 1.1rem;
    color: #555;
    padding: 0.5rem 0;
    border-left: 4px solid #6B7B5A;
    padding-left: 1rem;
}

.section-button {
    padding: 1.2rem 2.5rem;
    background: #6B7B5A;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

.section-button:hover {
    background: #5a6b49;
    
    box-shadow: 0 10px 30px rgba(107, 123, 90, 0.3);
}

.section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #6B7B5A, #8B9A7A);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(107, 123, 90, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visual-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.visual-desc {
    font-size: 1rem;
    opacity: 0.9;
}

.footer {
    margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }

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

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

    /* Hide all visual cards on mobile */
    .hero-visual {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .section-full {
        height: auto;
        min-height: 60vh;
        padding: 3rem 0;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 1rem;
        height: auto;
    }

    .section-content {
        order: 1;
        gap: 1.5rem;
    }

    .section-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 1rem;
        padding: 0.375rem 0;
        padding-left: 0.75rem;
        border-left-width: 3px;
    }

    .section-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        align-self: center;
        width: 100%;
        max-width: 300px;
    }

    /* Hide all section visual cards on mobile */
    .section-visual {
        display: none;
    }

    /* Additional mobile-specific adjustments */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    .hero-content {
        /* padding-top: 0; */
    }

    body {
        font-size: 16px;
    }

    
    
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-card {
        min-width: 200px;
        max-width: 240px;
        padding: 1.5rem;
    }

    .section-container {
        padding: 1.5rem;
        gap: 3rem;
    }

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

    .visual-card {
        max-width: 250px;
        padding: 2rem;
    }
}

@media (max-width: 1100px) {
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}