/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8e8e8;
    font-family: 'Inter', Arial, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: relative;
    margin-bottom: 30px;
    z-index: 10;
}

.header-container {
    background: transparent;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000;
    animation: underlineExpand 0.3s ease forwards;
}

@keyframes underlineExpand {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.logo-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
   font-family: 'Inter', Arial, sans-serif;
   font-weight: 700;
   color: #000;

   
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.more-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .more-icon {
    transform: rotate(90deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-link {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f5f5f5;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Navigation Section */
.mobile-nav-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-top: 10px;
}

.section-title {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    margin-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #666;
    font-weight: 600;
}

.download-section {
    display: flex;
    align-items: center;
}
.download-btn{
    text-decoration: none;
}

.download-btn {
    background: #fff;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
}

.burger-line {
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fafafa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #666;
}

.mobile-nav-section {
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.mobile-nav-section .section-title {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    margin-bottom: 5px;
}

.mobile-nav-section .mobile-nav-link {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: none;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #666;
}

.mobile-download {
    display: flex;
    justify-content: center;
}

.mobile-download-btn {
    background: #fff;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all .3s ease;
    width: 100%;
    max-width: 200px;
}

.mobile-download-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Main Container */
.about-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
   
}


.about-container  {
    background: linear-gradient(-45deg,
    #0e1f14,  /* dark base for depth */
    #1b5f30,  /* your main deep green */
    #2e7a49,  /* lively accent green */
    #6fbf82,  /* fresh, friendly tone */
    #e8f5e9   /* soft white-green glow */
  );  background-size: 180% 180%;
      animation: gradient-animation 12s ease infinite;
    }
   
    @keyframes gradient-animation {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

/* Main Panel */
.main-panel {
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


/* Content Wrapper */
.content-wrapper {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 3;
    padding-bottom: 200px;
}

/* Left Content Area */
.content-left {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
}

.content-header {
    margin-bottom: 40px;
}

.main-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heading-primary {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.heading-secondary {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: #555;

}


/* Right Content Area - Promotional Section */
.content-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: transparent;
    position: relative;
    padding: 60px 50px;
    z-index: 3;
}

.promotional-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.promotional-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    font-style: italic;
}

.promotional-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.mission-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    font-style: italic;
    margin-bottom: 10px;
    margin-top: 15px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.mission-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Cards Section */
.team-cards-section {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 4;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.member-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Card Background Colors */
.purple-card {
    background: linear-gradient(135deg, #e8d5ff 0%, #f3e8ff 100%);
}
.purple-card::after  {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,30 Q25,60 50,30 T100,30 L100,0 L0,0 Z" fill="%23e1ddd2" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

.white-card {
    background: #e7bcc4
}

.white-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,30 Q25,60 50,30 T100,30 L100,0 L0,0 Z" fill="%23e1ddd2" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

.green-card {
    background: linear-gradient(135deg, #d5f4e6 0%, #e8f8f0 100%);
}

.green-card::after  {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,30 Q25,60 50,30 T100,30 L100,0 L0,0 Z" fill="%23e1ddd2" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

.blue-card {
    background: linear-gradient(135deg, #e5f2ff 0%, #f0f8ff 100%);
}
.blue-card::after  {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,30 Q25,60 50,30 T100,30 L100,0 L0,0 Z" fill="%23e1ddd2" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: #333;
    stroke-width: 1.5;
}

.member-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* Background Decorations */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-curve-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(155, 185, 164, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-curve-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(93, 140, 106, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.bg-curve-3 {
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(62, 119, 79, 0.2);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */

/* Large tablets and small desktops */
@media screen and (max-width: 1200px) {
    .main-panel {
        max-width: 1000px;
    }
    
    .heading-primary {
        font-size: 42px;
    }
    
    .heading-secondary {
        font-size: 24px;
    }
    
    .promotional-title {
        font-size: 22px;
    }
    
    .mission-title {
        font-size: 18px;
    }
    
    
    .team-cards-section {
        bottom: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .content-left {
        padding: 40px 30px;
    }
    
    .content-right {
        padding: 40px 30px;
    }
    
    .heading-primary {
        font-size: 36px;
    }
    
    .heading-secondary {
        font-size: 22px;
    }
    
    .promotional-title {
        font-size: 20px;
    }
    
    .mission-title {
        font-size: 16px;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .team-cards-section {
        bottom: 20px;
        width: 95%;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 20px;
    }
    
    .main-panel {
        flex-direction: column;
        border-radius: 16px;
        min-height: auto;
        max-width: 100%;
    }
    
    .content-wrapper {
        flex-direction: column;
        padding-bottom: 120px;
    }
    
    .content-left {
        padding: 40px 30px;
        text-align: center;
    }
    
    .content-right {
        padding: 20px 30px;
        align-items: center;
    }
    
    .heading-primary {
        font-size: 32px;
    }
    
    .heading-secondary {
        font-size: 20px;
    }
    
    .promotional-title {
        font-size: 18px;
        text-align: center;
    }
    
    .promotional-subtitle {
        text-align: center;
        font-size: 13px;
    }
    
    .mission-title {
        font-size: 16px;
        text-align: center;
    }
    
    .mission-list li {
        text-align: center;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .brand-section {
        flex: 1;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .navigation {
        display: none;
    }
    
    .download-section {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .burger-menu {
        display: flex;
        margin-right: 20px;
    }
    
    .team-cards-section {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
        padding: 0 30px;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .member-card {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-description {
        font-size: 13px;
    }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
    .about-container {
        padding: 15px;
    }
    
    .content-left {
        padding: 30px 20px;
    }
    
    .content-right {
        padding: 20px;
    }
    
    .heading-primary {
        font-size: 26px;
    }
    
    .heading-secondary {
        font-size: 18px;
    }
    
    .promotional-title {
        font-size: 20px;
    }
    
    .description-box {
        padding: 20px;
    }
    
    .description-text {
        font-size: 15px;
    }
    
    .header-container {
        padding: 8px 12px;
        flex-direction: row;
        gap: 8px;
    }
    
    .brand-section {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .navigation {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 12px;
        padding-top: 0;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .download-section {
        order: 3;
    }
    
    .download-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .team-cards-section {
        padding: 0 20px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .member-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-description {
        font-size: 12px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 320px) {
    .content-left {
        padding: 20px 15px;
    }
    
    .content-right {
        padding: 15px;
    }
    
    .heading-primary {
        font-size: 22px;
    }
    
    .heading-secondary {
        font-size: 16px;
    }
    
    .promotional-title {
        font-size: 18px;
    }
    
    .header-container {
        padding: 6px 10px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .logo-image {
        width: 24px;
        height: 24px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .navigation {
        gap: 10px;
    }
    
    .download-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .team-cards-section {
        padding: 0 15px;
    }
    
    .member-card {
        padding: 18px 12px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-description {
        font-size: 11px;
    }
}

/* Sliding Panel Styles */
.side-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #faf7f3;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    border-left: 2px solid #3e774f;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.side-panel.open {
    right: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1b5f30;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1002;
}

.panel-header h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.close-btn:hover {
    background: rgba(255,255,255,0.2);
}

.panel-content {
    padding: 20px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #e0e0e0;
    min-height: 44px;
    touch-action: manipulation;
}

.menu-item:hover {
    background: #f0f0f0;
}

.menu-item span {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.menu-arrow {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
    opacity: 0.6;
}

/* Overlay for side panel */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
    height: 100vh;
    width: 100vw;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Tablet-specific media queries */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .side-panel {
        width: 280px;
        right: -280px;
    }
    
    .side-panel.open {
        right: 0;
    }
    
    .panel-header {
        padding: 18px;
    }
    
    .panel-header h2 {
        font-size: 1.3rem;
    }
    
    .close-btn {
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }
    
    .menu-item {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

/* Mobile-specific media queries */
@media screen and (max-width: 767px) {
    .side-panel {
        width: 260px;
        right: -260px;
    }
    
    .side-panel.open {
        right: 0;
    }
    
    .panel-header {
        padding: 16px;
    }
    
    .panel-header h2 {
        font-size: 1.2rem;
    }
    
    .close-btn {
        font-size: 1.6rem;
        width: 36px;
        height: 36px;
    }
    
    .menu-item {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
}
