body {
    font-family: "Century Gothic", 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Highlight Effect */
.highlight {
    transition: color 0.4s ease-in-out, text-decoration 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.highlight:hover {
    color: #00FF7F;
    text-decoration: underline;
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/1.jpg') no-repeat center center/cover;
    padding: 0 4em;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: bold;
    animation: slideInLeft 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-content h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    margin: 1rem 0;
    color: #00FF7F;
    animation: slideInRight 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    animation: fadeUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-cta a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #00FF7f, #00cc66);
    color: #000;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    animation: pulse 1.5s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-cta a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.hero-cta a:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,255,127,0.5);
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 1000;
    animation: slideDown 1s ease-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.navbar-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
    background: #2a2a2a;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    position: relative;
}

.navbar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #fff;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00FF7F;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-item:hover::before {
    width: 100%;
}

.navbar-item:hover {
    color: #00FF7F;
    background: #333;
}

.navbar-item.active {
    background: #00FF7F;
    color: #000;
}

.navbar-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #00FF7F;
    transition: left 0.3s ease, width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* About Section */
.about-section {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    background: #1a1a1a;
    animation: fadeIn 1.5s ease-out forwards;
}

.about-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #00FF7F;
    margin-bottom: 1rem;
    animation: skewIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes skewIn {
    from { transform: skewX(-20deg) translateX(-20px); opacity: 0; }
    to { transform: skewX(0) translateX(0); opacity: 1; }
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.about-highlight {
    background: #2a2a2a;
    padding: 2em;
    border-radius: 10px;
    border-left: 4px solid #00FF7F;
    animation: scaleIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.about-highlight h3 {
    font-size: 1.8rem;
    color: #00FF7F;
    margin: 0 0 0.5em;
    animation: slideInRight 1s ease-out 0.8s forwards;
    opacity: 0;
}

.about-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeUp 1s ease-out 1s forwards;
    opacity: 0;
}

/* Unique Section */
.unique-section {
    min-height: 60vh;
    padding: 2em;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-out forwards;
}

.unique-container {
    max-width: 1200px;
    text-align: center;
}

.unique-container h2 {
    font-size: 2.5rem;
    color: #00FF7F;
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes bounceIn {
    0% { transform: translateY(-30px); opacity: 0; }
    60% { transform: translateY(10px); }
    100% { transform: translateY(0); opacity: 1; }
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2em;
    justify-items: center;
    align-items: stretch;
}

.unique-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    max-width: 500px;
    animation: flipIn 1s ease-out forwards;
    opacity: 0;
}

.unique-card:nth-child(1) { animation-delay: 0.4s; }
.unique-card:nth-child(2) { animation-delay: 0.6s; }
.unique-card:nth-child(3) { animation-delay: 0.8s; }
.unique-card:nth-child(4) { animation-delay: 1s; }

@keyframes flipIn {
    from { transform: rotateY(-90deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
}

.unique-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 6px 20px rgba(0,255,127,0.3);
}

.unique-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unique-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.unique-card h3 {
    font-size: 1.5rem;
    color: #00FF7F;
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.unique-card p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem 1rem;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

/* Services Section */
/* Services Section */
.services-section {
    min-height: 60vh;
    padding: 2em 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.growth-graph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.graph-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.graph-point {
    transform: scale(0);
    animation: popPoint 0.5s ease-out forwards;
}

.graph-point:nth-child(2) { animation-delay: 0.5s; }
.graph-point:nth-child(3) { animation-delay: 1s; }
.graph-point:nth-child(4) { animation-delay: 1.5s; }

@keyframes popPoint {
    to { transform: scale(1); }
}

.services-container {
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-container h2 {
    font-size: 2.5rem;
    color: #00FF7F;
    margin-bottom: 1.5rem;
    animation: glowIn 1.5s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes glowIn {
    from { opacity: 0; text-shadow: none; }
    to { opacity: 1; text-shadow: 0 0 10px #00FF7F; }
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
}

.services-card {
    background: rgba(42,42,42,0.8);
    padding: 2em;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 400px;
    animation: bounceUp 1s ease-out forwards;
    opacity: 0;
}

.services-card:nth-child(1) { animation-delay: 0.4s; }
.services-card:nth-child(2) { animation-delay: 0.6s; }
.services-card:nth-child(3) { animation-delay: 0.8s; }

@keyframes bounceUp {
    0% { transform: translateY(50px); opacity: 0; }
    60% { transform: translateY(-10px); }
    100% { transform: translateY(0); opacity: 1; }
}

.services-card-left {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(0);
}

.services-card-right {
    margin-right: 0;
    margin-left: auto;
    transform: translateX(0);
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,255,127,0.3);
    border-color: #00FF7F;
}

.services-card h3 {
    font-size: 1.8rem;
    color: #00FF7F;
    margin: 0 0 1rem;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.services-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-card li {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    padding-left: 1.5em;
    position: relative;
}

.services-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00FF7F;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .services-container h2 {
        font-size: 2rem;
    }

    .services-card h3 {
        font-size: 1.5rem;
    }

    .services-card li {
        font-size: 0.9rem;
    }

    .services-list {
        padding: 0 1em;
    }
}

@media (max-width: 480px) {
    .services-container h2 {
        font-size: 1.8rem;
    }

    .services-card {
        padding: 1.5em;
    }

    .services-card h3 {
        font-size: 1.3rem;
    }

    .services-card li {
        font-size: 0.8rem;
    }
}
/* Contact Section */
.contact-section {
    min-height: 60vh;
    padding: 2em;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-out forwards;
}

.contact-container {
    max-width: 1200px;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5rem;
    color: #00FF7F;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes slideInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.contact-content {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.contact-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0.5rem 0;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.contact-text p:nth-child(1) { animation-delay: 0.4s; }
.contact-text p:nth-child(2) { animation-delay: 0.6s; }
.contact-text p:nth-child(3) { animation-delay: 0.8s; }
.contact-text p:nth-child(4) { animation-delay: 1s; }

.contact-divider {
    width: 2px;
    background: linear-gradient(to bottom, #00FF7F, transparent);
    margin: 0 1em;
    animation: growDivider 1.5s ease-out forwards;
}

@keyframes growDivider {
    from { height: 0; }
    to { height: 100%; }
}

.contact-info {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.contact-item:nth-child(1) { animation-delay: 0.4s; }
.contact-item:nth-child(2) { animation-delay: 0.6s; }
.contact-item:nth-child(3) { animation-delay: 0.8s; }
.contact-item:nth-child(4) { animation-delay: 1s; }

.contact-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    color: #00FF7F;
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: #00FF7F;
    transition: transform 0.5s ease, fill 0.5s ease;
}

.contact-link:hover .contact-icon {
    fill: #fff;
}

.contact-icon.social {
    animation: spinX 1.5s ease-out forwards;
}

@keyframes spinX {
    from { transform: rotate(360deg); opacity: 0; }
    to { transform: rotate(0); opacity: 1; }
}

.contact-icon.address {
    animation: bounceIn 1s ease-out forwards;
}

.contact-icon.phone {
    animation: rotateIn 1s ease-out forwards;
}

@keyframes rotateIn {
    from { transform: rotate(-45deg); opacity: 0; }
    to { transform: rotate(0); opacity: 1; }
}

.contact-icon.email {
    animation: slideInRight 1s ease-out forwards;
}

.contact-link:hover .contact-icon.social {
    transform: scale(1.2) rotate(360deg);
}

.contact-link:hover .contact-icon.address {
    transform: scale(1.2) translateY(-5px);
}

.contact-link:hover .contact-icon.phone {
    transform: scale(1.2) rotate(20deg);
}

.contact-link:hover .contact-icon.email {
    transform: scale(1.2) translateX(5px);
}

.contact-link .highlight {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-footer {
    margin-top: 2em;
    text-align: center;
}

.contact-footer hr {
    border: 0;
    height: 1px;
    background: #00FF7F;
    margin: 1em 0;
    animation: expandHr 1.5s ease-out forwards;
}

@keyframes expandHr {
    from { width: 0; }
    to { width: 100%; }
}

.contact-footer p {
    font-size: 0.9rem;
    color: #ccc;
    animation: fadeIn 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 0 2em;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-divider {
        width: 80%;
        height: 2px;
        margin: 1em auto;
    }

    .contact-text, .contact-info {
        text-align: center;
        max-width: 100%;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .navbar-item {
        font-size: 0.9rem;
    }

    .about-text h2, .unique-container h2, .services-container h2, .contact-container h2 {
        font-size: 2rem;
    }

    .services-card h3 {
        font-size: 1.5rem;
    }

    .unique-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }

    .contact-text p {
        font-size: 1rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .contact-link .highlight {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }

    .navbar-item {
        font-size: 0.8rem;
    }

    .about-text h2, .unique-container h2, .services-container h2, .contact-container h2 {
        font-size: 1.8rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .contact-link .highlight {
        font-size: 0.8rem;
    }
}