:root {
    --primary-color: #81b43b;
    --primary-dark: #6d9932;
    --primary-light: #9bc755;
    --secondary-color: #f59e0b;
    --accent-color: #059669;
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-text: #f8fafc;
    --muted-text: #94a3b8;
    --card-bg: #1e293b;
    --border-color: #334155;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 50%, #1a2332 100%);
    color: var(--light-text);
    min-height: 100vh;
}

/* .navbar {
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(129, 180, 59, 0.2);
            transition: all 0.3s ease;
        } */

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.hero-section {
    /* background: linear-gradient(135deg, #1a2e05 0%, #2d4a0f 25%, #3d5f1a 50%, #4d7125 75%, #5d8230 100%); */
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(129, 180, 59, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(155, 199, 85, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(129, 180, 59, 0.2) 50%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(129,180,59,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

@keyframes float {

    0%,
    100% {
        transform: translate(-25%, -25%) rotate(0deg);
    }

    33% {
        transform: translate(-30%, -20%) rotate(120deg);
    }

    66% {
        transform: translate(-20%, -30%) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px 0;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(129, 180, 59, 0.4);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-custom:hover {
    background: rgba(129, 180, 59, 0.2);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(129, 180, 59, 0.3);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-text);
    background: linear-gradient(135deg, var(--light-text), var(--muted-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 3rem;
}

.card-vertical {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(51, 65, 85, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(129, 180, 59, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(129, 180, 59, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(129, 180, 59, 0.2), transparent);
    transition: left 0.6s ease;
}

.card-vertical:hover::before {
    left: 100%;
}

.card-vertical:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(129, 180, 59, 0.3);
    border-color: rgba(129, 180, 59, 0.4);
}

.card-body {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-icon-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 8px 20px rgba(129, 180, 59, 0.4);
}

.card-icon-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.card-icon-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.about-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(30, 41, 59, 0.9) 50%, var(--card-bg) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(129, 180, 59, 0.15) 0%, transparent 50%);
}


.form-control {
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    color: var(--light-text);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.7);
    color: var(--light-text);
    box-shadow: 0 0 0 0.2rem rgba(129, 180, 59, 0.25);
}

.form-control::placeholder {
    color: var(--muted-text);
}

.form-label {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 8px;
}

.footer {
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    color: var(--light-text);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(129, 180, 59, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-social {
    font-size: 1.5rem;
    color: var(--muted-text);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(129, 180, 59, 0.1);
    border: 1px solid rgba(129, 180, 59, 0.2);
}

.footer-social:hover {
    color: var(--primary-color);
    background: rgba(129, 180, 59, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(129, 180, 59, 0.3);
}

.coming-soon-badge {
    background: rgba(0, 0, 0, 0.158);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    /* font-weight: 600; */
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    /* box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

html {
    scroll-behavior: smooth;
}

@media(max-width:991px) {
    #navbarNav {
        background: #4c5d3166;
        border-radius: 0 0 5px 5px;
        backdrop-filter: blur(5px);
        padding: 8px 0;
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    animation: fadeInLeft 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(121, 216, 58, 0.8), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 5px;
}

.mission-section {
    animation: fadeInRight 1s ease-out 0.6s both;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;

}

.mission-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--light-text);
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #39db10, #107015);
    border-radius: 2px;
}

.mission-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.mission-list li:not(:last-child) {
    margin-bottom: 8px;
}

.mission-item {
    display: flex;
    align-items: flex-start;

    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out calc(0.8s + var(--delay)) both;
}

.mission-item:nth-child(1) {
    --delay: 0.1s;
}

.mission-item:nth-child(2) {
    --delay: 0.2s;
}

.mission-item:nth-child(3) {
    --delay: 0.3s;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #8bbb45;
    transform: translateX(10px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #8bbb45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.mission-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.company-statement {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.company-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}
/* 
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

.highlight-text {
    background: linear-gradient(90deg, #39db10, #25aa2b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .container {
        padding: 50px 20px;
    }
    .navbar .container{
        padding: 0 20px;
    }
    .section-padding {
    padding: 30px 0;
}
.footer {
    
    padding: 0;
}

    .philosophy-card {
        padding: 30px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .mission-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .philosophy-card {
        padding: 25px 15px;
    }

    .card-title,
    .mission-title {
        font-size: 1.5rem;
    }

    .company-statement {
        padding: 20px;
        font-size: 1.1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to elements inside hero-content */
.hero-content>* {
    opacity: 0;
    /* Start hidden */
    animation: fadeUp 0.8s ease-out forwards;
}

/* Staggered animation delays for a nice effect */
.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-content .mt-4 {
    animation-delay: 0.6s;
}