/* Base Styles */
:root {
    /* Color System */
    --primary-color: #2E7D32;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    
    --secondary-color: #81C784;
    --secondary-light: #b2fab4;
    --secondary-dark: #c2c4c2;
    
    --accent-color: #18ac0a;
    --accent-light: #ffc947;
    --accent-dark: #10ad51;
    
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #6cf436;
    
    --neutral-100: #f5f5f5;
    --neutral-200: #eeeeee;
    --neutral-300: #e0e0e0;
    --neutral-400: #bdbdbd;
    --neutral-500: #9e9e9e;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing (8px grid) */
    --space-xs: 0.5rem;  /* 8px */
    --space-sm: 1rem;    /* 16px */
    --space-md: 1.5rem;  /* 24px */
    --space-lg: 2rem;    /* 32px */
    --space-xl: 3rem;    /* 48px */
    
    /* Other Variables */
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Light Theme Colors (Default) */
    --bg-color: #ffffff;
    --text-color: var(--neutral-900);
    --text-light: var(--neutral-600);
    --card-bg: var(--neutral-100);
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #2E7D32;
    --footer-text: var(--neutral-200);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --bg-color: var(--neutral-900);
    --text-color: var(--neutral-100);
    --text-light: var(--neutral-400);
    --card-bg: var(--neutral-800);
    --header-bg: rgba(33, 33, 33, 0.95);
    --footer-bg: var(--neutral-900);
    --footer-text: var(--neutral-300);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.introjs-tooltip-title, .introjs-tooltiptext {
    font-family: var(--font-heading);
    font-weight: 700;
    color: grey;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

/* language */
  #google_translate_element {
    position: fixed;
    display: none;
    left: 30px;
    bottom: 40px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 800;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.356);
    
  }
 
  .VIpgJd-ZVi9od-ORHb-OEVmcd, .skiptranslate{
    display: none;
    z-index: -100;
  }

  /*  language  */
  .lag-sel  {
    width: 60px;
    height: 40px;
    position: fixed;
    left: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 700;
  }
  .lag-sel img {
    width: 100%;
  }

  .goog-te-combo {
    z-index: 999;
    display: block;
  }

  #targetLanguage {
    z-index: 999;
    display: block;
  }

  .skiptranslate, .goog-te-gadget{
    z-index: 999;
    display: block;
  }


    .lan {
    position: absolute;
    z-index: 1000;
  }




img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

/* h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
} */

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--accent-color);
    color: white;
}

.btn-small:hover {
    background-color: var(--accent-dark);
    color: white;
}

.title{
    font-size: var(--title);
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

.sub-title{
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: var(--space-xs);
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

#main-nav {
    display: flex;
    align-items: center;
    list-style: none;
}

#main-nav li {
    margin-left: var(--space-md);
}

#main-nav a {
    color: var(--text-color);
    font-weight: 600;
    /* padding: var(--space-xs) 0; */
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

#main-nav a:hover::after,
#main-nav a.active::after {
    width: 100%;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

#menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

#menu-toggle span:first-child {
    top: 0;
}

#menu-toggle span:nth-child(2) {
    top: 9px;
}

#menu-toggle span:last-child {
    bottom: 0;
}

/* Main Content Spacing */
main {
    padding-top: 76px;
    min-height: calc(100vh - 300px);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--space-lg) 0 var(--space-sm);
    margin-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col a {
    color: var(--footer-text);
}

.footer-col a:hover {
    color: var(--secondary-light);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-links a {
    margin-left: var(--space-sm);
    color: var(--footer-text);
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-xl) 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: var(--space-xs);
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Theme Toggle Button */
#theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

#theme-toggle:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

#theme-toggle .fa-sun {
    display: none;
}

[data-theme="dark"] #theme-toggle .fa-moon {
    display: none;
}

[data-theme="dark"] #theme-toggle .fa-sun {
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
    padding: var(--space-md);
}

.modal-content {
    position: relative;
    background-color: var(--bg-color);
    margin: 2rem auto;
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: var(--box-shadow);
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--neutral-600);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--error-color);
}

/* Forms */
/* 
.form-group {
    margin-bottom: var(--space-md);
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-color);
}

input, select, textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--neutral-300);
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
} */

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    #menu-toggle {
        display: block;
    }
    
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: var(--bg-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 80px var(--space-md) var(--space-md);
        transition: var(--transition);
        z-index: 1000;
    }
    
    #main-nav.active {
        right: 0;
    }
    
    #main-nav li {
        margin: var(--space-xs) 0;
    }
    
    #main-nav a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .menu-open {
        overflow: hidden;
    }
    
    .menu-open #menu-toggle span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }
    
    .menu-open #menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-open #menu-toggle span:last-child {
        transform: rotate(-45deg);
        bottom: 9px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .footer-links a {
        margin-left: 0;
    }
    
    .modal-content {
        padding: var(--space-md);
    }
}