:root {
    --header-height: 140px;
    --primary-color: #0E2A5B;
    --secondary-color: #54B435;
    --accent-color: #36622E;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Hero Section - Enhanced */

.hero-about {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0E2A5B 0%, #1a4c96 40%, #36622E 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    padding: 140px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent), radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
    opacity: 0.6;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes particles {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-about h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-about p {
    font-size: 1.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* Section Styles */

.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}


/* About Story Section */

.about-story {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(84, 180, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-story p {
    text-align: justify;
    margin: 0 auto;
    max-width: 900px;
    line-height: 2;
    color: #444;
    font-size: 1.15rem;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}


/* Mission & Vision Section */

.mission-vision {
    background: white;
}

.mission-vision .row>div {
    padding: 30px;
}

.mission-vision h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.mission-vision h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--secondary-color);
    border-radius: 3px;
}

.mission-vision p {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
    color: #555;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.mission-vision p:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* Core Values Section */

.core-values {
    background: linear-gradient(135deg, #e8f5e8 0%, #f8f9fa 100%);
}

.core-values .row {
    margin-top: 30px;
}

.core-values .col-md-3 {
    margin-bottom: 30px;
}

.core-values h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.core-values .col-md-3:hover h4 {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.core-values p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
}

.core-values .col-md-3:hover p {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(54, 98, 46, 0.2);
}


/* Products Section */

.products {
    background: white;
}

.products ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 900px;
}

.products ul li {
    margin-bottom: 18px;
    font-size: 1.15rem;
    text-align: left;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.8;
    padding: 15px 15px 15px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.products ul li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(84, 180, 53, 0.1);
    border-radius: 50%;
}

.products ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e8f9ea 0%, #ffffff 100%);
}


/* Contact Advice Section */

.contact-advice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 80px 20px;
}

.contact-advice .contact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.contact-advice .contact-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 20px 60px rgba(54, 98, 46, 0.15);
}

.contact-form .form-control {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 0.9rem 1.2rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(54, 98, 46, 0.15);
    transform: translateY(-2px);
}

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

.contact-form button {
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 40px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border: none;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(54, 98, 46, 0.3);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(54, 98, 46, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), #4A7C23);
}


/* Responsive Design */

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }
    .hero-about p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .mission-vision h3 {
        font-size: 1.6rem;
    }
    .core-values h4 {
        font-size: 1.3rem;
    }
}