:root {
    --primary-color: #ffffff;
    --light-green: #ffffff;
    --dark-green: #000000f0;
    --white: #c1d918;
    --text-color: #000000;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo .name {
    display: flex;
    align-items: center;
}

.logo .name p {
    font-size: 20px;
    margin-left: 15px;
}

.logo-img {
    width: 100px;
    height: auto;
    border: 2px solid #fff;
}

.tagline {
    font-size: 12px;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
}

.desktop-menu li {
    margin-left: 2rem;
}

.desktop-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.desktop-menu a:hover {
    opacity: 0.8;
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 105%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 105%;
}

.mobile-menu {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-menu.active {
    height: 240px;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 2rem;
}

.mobile-menu li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    transition: transform 0.2s ease;
}

.mobile-menu a:hover {
    transform: translateX(5px);
}

/* Hero Section */
#hero {
padding: 80px 0;
padding-bottom:0px;
background-color: var(--primary-color);
}

.hero-content {
    display: flex;
    flex-direction: column-reverse;
    padding: 100px 0;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: var(--dark-green);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Video */
.responsive-video {
    width: 80%;
    max-width: 1920px;
    display: block;
    margin: 0 auto;
}

/* Marquee */
.marquee-container {
    margin-top:0vh;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

.marquee-item {
    color: var(--text-color);
    font-size: 28px;
    font-weight: 600;
    padding: 0 40px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
}

.separator {
    width: 3px;
    height: 40px;
    background-color: #87e730;
    margin: 0 30px;
    opacity: 0.9;
}

/* Services */
#services {
padding: 100px 0;
background-color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fbed8a;
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Contact */
#contact {
padding: 100px 0;
padding-top:0px;
background-color: var(--primary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
/*     flex-direction: column; */
    gap: 30px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
}

.contact-text a,
.contact-text p {
    color: var(--text-color);
    text-decoration: none;
}

.social-links-contact {
    display: flex;
    gap: 10px;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social.instagram { color: #ff00ba; }
.social.youtube { color: #e70101; }
.social.linkedin { color: #00c2ff; }

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

/* Preloader */
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: #000000;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
font-size: 24px;
z-index: 2000;
transition: opacity 1s ease-out;
}

#typewriter {
border-right: 2px solid white;
white-space: nowrap;
overflow: hidden;
}

@keyframes blink {
    50% { border-color: transparent; }
}

#typewriter.blink {
animation: blink 0.7s step-end infinite;
}
@media (max-width: 812px) {
    .contact-info {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
        background-color: black;
        padding: 4px;
        border-radius: 2px;
    }

    .mobile-menu {
        display: block;
    }

    .navbar-container {
        padding: 0 12px;
    }

    .hero-text p {
        font-size: 1.2rem;
        padding-top:50px;
    }

    .hero-content {
        padding: 75px 0;
    }

    .marquee-item {
        font-size: 20px;
        padding: 0 20px;
    }

    .separator {
        margin: 0 15px;
        height: 30px;
        width: 2px;
    }


    .contact-info {
            flex-direction: column;
    }
}

@media (max-width: 576px) {
    #hero {
    padding: 0 10px;
    }

    .hero-text p {
        text-align: left;
        width:80vw;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
