:root {
    --primary-color: #8DC63F;
    --secondary-color: #003366;
    --text-light: #fff;
    --text-dark: #000;
    --font-family: "Nunito Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    height: 94px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-image img {
    width: 58px;
    height: 58px;
    cursor: pointer;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 38px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 38px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    text-decoration: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.login-btn {
    border: 2px solid var(--primary-color);
    padding: 1rem;
    color: var(--primary-color);
    background: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background: var(--text-light);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    right: 0;
}

.sidebar ul {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.sidebar ul li {
    margin: 1.5rem 0;
}

.sidebar ul a {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
    position: relative;
    text-decoration: none;
}

.sidebar ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.sidebar ul a:hover::after {
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

/* ===== HERO SECTION ===== */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('/assets/image/01f71c09-d867-4658-bd46-3ff513b2b0d0.jpg') no-repeat center/cover;
    padding: 0 80px;
    height: 800px;
    color: var(--text-light);
    text-shadow: 1px 1px 2px #000;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: bold;
    max-width: 800px;
}

.hero-text {
    font-size: 1rem;
    max-width: 800px;
    margin-top: 1rem;
}

.hero-btn {
    display: flex;
    gap: 18px;
    margin-top: 1.5rem;
}

.get-started-btn {
    border: 1px solid var(--primary-color);
    padding: 1.1rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
}

.get-started-btn:hover {
    transform: scale(1.05);
}

.learn-more-btn {
    border: 1px solid var(--primary-color);
    padding: 1.1rem;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
}

.learn-more-btn:hover {
    transform: scale(1.05);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    text-align: center;
    background: #fff;
    padding: 6rem 2rem;
}

.main-heading {
    color: var(--text-dark);
    text-decoration: underline var(--primary-color) 2px;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.main-text {
    color: var(--text-dark);
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: #F4F7FB;
    padding: 58px 2rem;
}

.about-img {
    height: 350px;
    width: 350px;
    background: var(--text-light);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-us {
    padding: 1rem;
    width: 650px;
    min-width: 300px;
}

.about-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-text {
    margin-bottom: 1rem;
}

.about-num-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 1rem;
}

.about-num h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.about-num span {
    font-weight: 300;
}

/* ===== FADE ANIMATIONS ===== */
.fade-left, .fade-right, .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 2s ease;
}

.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.fade-up { transform: translateY(50px); }
.fade-visible { opacity: 1; transform: translateX(0) translateY(0); }

/* ===== CONTACT SECTION ===== */
.contact-section {
    text-align: center;
    padding: 6rem 2rem;
}

.contact-title { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 2.5rem; }

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; margin: 0 auto; }

.form-row { display: flex; gap: 20px; flex-wrap: wrap; }
.form-group { flex: 1; display: flex; flex-direction: column; }
label { font-weight: bold; margin-bottom: 5px; }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; width: 100%; }
textarea { resize: vertical; }
.full-width { width: 100%; }

.submit-query {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-query:hover { background-color: #AEE37A; }

/* ===== CONTACT CARDS ===== */
.contact-cards { display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap; }
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.contact-icon { width: 60px; height: 60px; border-radius: 50%; background: #F7FBF3; display: flex; justify-content: center; align-items: center; margin: 0 auto 1.5rem; }
.contact-icon i { color: var(--primary-color); font-size: 1.5rem; }
.contact-card h3 { margin-bottom: 1rem; color: var(--text-dark); }
.contact-card p { margin-bottom: 0.5rem; color: var(--text-dark); }
.contact-card a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer { background: #000; color: #fff; padding: 40px 0 20px; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 2rem; }
.footer-about img { width: 95px; height: 95px; border-radius: 50%; background: #F4F7FB; padding: 1rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--primary-color); text-decoration: underline; }
.social-icons a { color: #fff; margin-right: 15px; font-size: 18px; transition: color 0.3s; }
.social-icons a:hover { color: #ff9900; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 15px; margin-top: 20px; font-size: 14px; }
.footer-bottom span { color: var(--primary-color); }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .nav-container { display: none; }
    .menu-toggle { display: block; color: #000; }
}

@media (max-width: 768px) {
    .hero-section { height: auto; padding: 80px 20px; text-align: center; }
    .hero-heading { font-size: 2.5rem; }
    .hero-text { font-size: 1rem; max-width: 100%; margin: 1rem auto; }
    .main-text { padding: 0 1rem; font-size: 0.95rem; }
    .about-content { flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 0; }
    .about-img { width: 300px; height: 300px; }
    .about-us { width: 100%; text-align: center; }
    .about-num-content { flex-direction: column; gap: 1rem; }
    .contact-container { flex-direction: column; }
}
   