* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2FA84F;
    --light-green: #6BCF8E;
    --yellow: #FFC61A;
    --blue: #5A7FBF;
    --brown: #8B4A22;
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation - Same structure */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-img {
    height: 80px;
    width: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--green);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--green);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(47, 168, 79, 0.1) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.menu-overlay.active {
    right: 0;
}

.menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--green);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-close:hover {
    background: var(--green);
    transform: rotate(90deg);
}

.menu-links {
    list-style: none;
    width: 100%;
}

.menu-links li {
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.menu-overlay.active .menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-links li:nth-child(2) { transition-delay: 0.15s; }
.menu-links li:nth-child(3) { transition-delay: 0.2s; }
.menu-links li:nth-child(4) { transition-delay: 0.25s; }
.menu-links li:nth-child(5) { transition-delay: 0.3s; }
.menu-links li:nth-child(6) { transition-delay: 0.35s; }

.menu-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 1.5rem;
    border-left: 4px solid transparent;
}

.menu-links a:hover {
    color: var(--green);
    border-left-color: var(--green);
    padding-left: 2rem;
    background: rgba(47, 168, 79, 0.1);
}

/* Hero Section */
/* Hero Section */
.institutional-hero {
    position: relative;
    height: 85vh;
    margin-top: 82px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 127, 191, 0.8), rgba(47, 168, 79, 0.7));
    display: flex;
    align-items: center;
}

.hero-text {
    color: var(--white);
    animation: fadeInUp 1s ease;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta.primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 5px 20px rgba(255, 198, 26, 0.4);
}

.hero-cta.primary:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-cta.secondary:hover {
    background: var(--white);
    color: var(--green);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--green);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.8;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

/* Overview Section */
.overview-section {
    background: var(--white);
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(47, 168, 79, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.overview-card:hover h3 {
    color: var(--white);
}

/* Solutions Section with Tabs */
.solutions-section {
    background: var(--gray);
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.solution-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.solution-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-info h3 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.solution-info .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.feature-item:last-child {
    border-bottom: none;
}

.check {
    width: 30px;
    height: 30px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

.solution-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray);
}

.solution-stats .stat {
    text-align: center;
}

.solution-stats h4 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.solution-stats p {
    color: #666;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(90, 127, 191, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Case Studies */
.case-studies {
    background: var(--gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--yellow);
    color: var(--black);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.case-location {
    color: var(--green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-stats span {
    background: var(--gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.process-connector {
    font-size: 2rem;
    color: var(--yellow);
}

/* CTA Section */
.cta-section {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920') center/cover;
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 168, 79, 0.9), rgba(90, 127, 191, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 198, 26, 0.6);
}

/* Contact Form */
.contact-form-section {
    background: var(--gray);
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.contact-info-box {
    background: var(--blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.info-item .icon {
    font-size: 1.5rem;
}

.info-item p {
    margin: 0.3rem 0;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: 180PX;
}

.footer-tagline {
    color: var(--light-green);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--green);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--green);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--green);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-cards,
    .benefits-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-detail {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .institutional-hero {
        height: 70vh;
    }
    
    .overview-cards,
    .benefits-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .process-connector {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-overlay {
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}