:root {
    --bg-color: #ffffff;
    --text-color: #0f172a;
    --primary-color: #78a72a;
    /* Green */
    --primary-hover: #5d8320;
    --secondary-color: #b8dd16;
    /* Vividyellow Green */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
}

@font-face {
    font-family: 'ZT Talk';
    src: url('assets/fonts/ZTTalk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZT Talk';
    src: url('assets/fonts/ZTTalk-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZT Talk';
    src: url('assets/fonts/ZTTalk-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZT Talk';
    src: url('assets/fonts/ZTTalk-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZT Talk';
    src: url('assets/fonts/ZTTalk-Bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'ZT Talk', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #0f172a;
    /* Dark text on vivid yellow/green is more legible */
    box-shadow: 0 4px 15px rgba(120, 167, 42, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 167, 42, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.brand-logo,
.custom-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('assets/images/banner.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    /* nice parallax effect */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Light overlay for readability */
    z-index: 0;
}

/* Banner Section */
.banner-section {
    width: 100%;
    margin-top: 86px;
    /* Offset for navbar */
    position: relative;
}

.banner-section img {
    width: 100%;
    height: calc(100vh - 88px);
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.scroll-down-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: bounce 2s infinite;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-down-icon:hover {
    background: var(--primary-color);
    color: #fff;
}

.scroll-down-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Alternative Hero Section with Orbs */
.hero-section-orbs {
    /* height: calc(100vh - 88px); */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
	padding: 75px 0;
}

.hero-background-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(120, 167, 42, 0.05) 0%, transparent 60%);
    z-index: -1;
}

.hero-background-orbs::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(184, 221, 22, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate;
}

.hero-background-orbs::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(120, 167, 42, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
    background-color: #fafafa;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brand Intro */
.brand-intro {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.brand-intro h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: var(--primary-hover);
}

.brand-link .arrow {
    transition: transform 0.3s ease;
}

.brand-link:hover .arrow {
    transform: translateX(5px);
}

.available-on {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem !important;
}

.marketplace-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.market-link {
    padding: 0.75rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 60px;
}

.market-link:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.marketplace-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    position: relative;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem auto 0;
    max-width: 1000px;
}

.team-member {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
}

.team-details {
    padding: 2rem;
    text-align: center;
}

.team-details h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-details .role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-details .bio {
    color: #475569;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.contact-wrapper {
    display: flex;
    overflow: hidden;
}

.contact-form {
    flex: 3;
    padding: 3rem;
    display: none;
}

.map-container {
    flex: 3;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contact-info {
    flex: 2;
    padding: 3rem;
    background: rgba(120, 167, 42, 0.05);
    border-left: 1px solid var(--glass-border);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.info-item p {
    color: #334155;
    font-weight: 500;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #64748b;
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.submit-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(120, 167, 42, 0.3);
}

/* Animations classes controlled by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 10px 15px;
    flex-wrap: wrap;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    gap: 5px 20px;
    margin-bottom: 0;
    padding-left: 0;
}

.static-page-main {
    padding: 100px 0;
}

.static-page-content {
    padding: 30px 0;
}

.static-page-content ul,
.static-page-content ol {
    padding-left: 18px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 12px;
    font-size: 18px;
}

.static-page-hero {
    background: linear-gradient(45deg, #7ba62b, #c7df61);
    padding: 60px 0;
}
.nav-links li.has-child-menu .sub-menu {
	list-style: none;
}

@media(min-width: 768px){
	.nav-links li.has-child-menu .sub-menu {
		position: absolute;
		min-width: 150px;
		background: rgb(255 255 255 / 93%);
		top: 100%;
		border-top: 2px solid #78a528;
		display: none;
		margin-top: -2px;
	}
	.nav-links li.has-child-menu:hover .sub-menu {
    	display: block;
	}
	.nav-links li.has-child-menu:hover > a:after {
		transform: rotate(-135deg);
		top: 5px;
	}
}

.nav-links li {
    position: relative;
}

.nav-links>li>a {
    padding: 30px 8px;
    display: block;
}

.nav-links li.has-child-menu>a {
    position: relative;
}

.nav-links li.has-child-menu>a {
    padding-right: 15px;
}

.nav-links li.has-child-menu>a:after {
    content: '';
    position: absolute;
    right: 0 !important;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 6px;
    height: 6px;
    display: block;
    background: transparent;
    transform: rotate(45deg);
    transition: all ease-in-out 500ms;
    top: 0;
    bottom: 0;
    margin: auto;
    left: auto;
}

.nav-links li.has-child-menu .sub-menu li a {
    display: block;
    padding: 10px;
    font-size: 16px;
    transition: all ease-in-out 500ms;
}

.nav-links li.has-child-menu>.sub-menu>li>a:hover {
    background: var(--primary-hover);
    color: #fff;
}

.brand-social ul {
    list-style: none;
    display: inline-flex;
    gap: 5px 12px;
    align-items: center;
    flex-wrap: wrap;
}

.brand-social ul li a img {
    max-width: 20px;
}

.brand-social ul li a {
    display: inline-flex;
    align-items: center;
}

.brand-item-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-item-row {
    margin-bottom: 30px;
}

.footer-menu ul li a {
    font-size: 15px;
}

.copyright p {
    font-size: 15px !important;
    margin-bottom: 0 !important;
}
.about-data {
	display: inline-block;
	width: 100%;
	padding-bottom: 25px;
}
.about-data p{
	color: #334155;
	line-height: 1.8;
}
.hero-content-block{
	text-align: justify;
}
.hero-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.hero-content ul {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.hero-content ul li {
    padding: 3px 0;
    color: #475569;
}


/* Responsive */
@media (max-width: 900px) {

    .about-content,
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .map-container {
        min-height: auto;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-info {
        padding: 2rem;
    }

    .footer-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 20px 5%;
    }

    .navbar.scrolled {
        padding: 15px 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-links>li>a {
        padding: 5px 5px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .team-section,
    .about-section {
        padding: 40px 0;
    }

    .banner-section img {
        height: 500px;
        min-height: 300px;
    }

    .hero-section-orbs {
        min-height: 500px;
    }

    .nav-links li.has-child-menu .sub-menu {
        position: relative;
        top: auto;
        border-top: 2px solid #78a528;
        display: none;
        margin-top: -2px;
        text-align: center;
    }

    .nav-links li.has-child-menu.open .sub-menu {
        display: block;
    }

    .nav-links li.has-child-menu>a {
        padding-right: 15px;
        text-align: center;
    }
	.nav-links li.has-child-menu.open > a:after {
		transform: rotate(-135deg);
		margin-bottom: 10px;
	}
	.hero-content-block{
		text-align: start;
	}
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}