@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
    --brand-dark: #0C1E2C;
    --brand-bg: #F6F8F6;
    --brand-green: #1DB954; 
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 95px;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: var(--brand-bg);
    height: 80px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* --- LEFT SIDE (REDUCED TO FIT) --- */
.brand-container {
    display: inline-flex;
    flex-direction: column;
    transform: scale(0.5);
    transform-origin: left center;
    font-family: 'Inter', sans-serif;
}

.brand-top { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 70px; width: auto; }
.brand-titles { display: flex; flex-direction: column; justify-content: center; }
.main-title { margin: 0; font-size: 2.2rem; font-weight: 900; color: var(--brand-dark); letter-spacing: 2px; line-height: 0.9; }
.sub-title { margin: 0; font-size: 1.4rem; font-weight: 400; color: var(--brand-dark); letter-spacing: 4px; }
.brand-footer { margin-top: 8px; padding-top: 4px; }
.tagline { margin: 0; font-size: 0.75rem; font-weight: 800; color: var(--brand-dark); letter-spacing: 1.5px; text-align: center; text-transform: uppercase; }

/* --- RIGHT SIDE & LINKS --- */
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--brand-dark); font-weight: 600; font-size: 0.95rem; }
.btn-talk { background-color: var(--brand-green); color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.9rem; }

/* --- HAMBURGER STYLING --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--brand-dark);
    border-radius: 2px;
}


.mobile-only { display: none; }

@media (max-width: 992px) {
    .hamburger { display: flex; z-index: 100; }
    .desktop-only { display: none; }
    .mobile-only { display: block; margin-top: 20px; }

    .nav-links {
        position: fixed;
        left: -100%; 
        top: 80px;
        flex-direction: column;
        background-color: var(--brand-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 40px 0;
        z-index: 99;

    }


    /* When menu is active */
    .nav-links.active {
        left: 0;
    }

    /* Hamburger Animation to "X" */
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

}

/* --- HERO LAYOUT --- */
.heroo{
    background-color: var(--brand-bg);
    min-height: 90vh;
    overflow-x: clip;
}
.hero {
    background-color: var(--brand-bg);
    min-height: 50vh;
    padding: 40px 5%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    overflow-x: clip;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

.hero-content,
.hero-visual {
    min-width: 0;
}

/* --- LEFT SIDE TEXT --- */
/* .hero-content{
    padding-left: 100px;
} */
.hero-title {
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #555;
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Secondary Button Style */
.btn-outline {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--brand-dark);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

/* --- RIGHT SIDE BRAND (RESET SCALE) --- */
.hero-brand {
    margin-left: 0;
    transform: scale(1.55);
    transform-origin: center;
}

@media (max-width: 1200px) {
    .hero-title { font-size: clamp(2rem, 4.6vw, 3.6rem); }
    .hero-subtitle {
        font-size: 1rem;
        max-width: 440px;
        margin-bottom: 28px;
    }
    .hero-btns { gap: 12px; }
    .hero-btns .btn-talk,
    .hero-btns .btn-outline {
        padding: 10px 18px;
        font-size: 0.88rem;
    }
    .hero-brand { transform: scale(1.2); }
}

@media (max-width: 1080px) {
    .hero {
        padding: 24px 4%;
    }
    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: 20px;
    }
    .hero-title { font-size: clamp(1.8rem, 4.2vw, 3rem); }
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }
    .hero-brand { transform: scale(1); }
}

/* --- MOBILE HERO --- */
@media (max-width: 992px) {
    .hero {
        padding: 28px 5%;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { order: 2; }
    .hero-visual { order: 1; margin-bottom: 50px; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 30px auto; }
    .hero-btns { justify-content: center; }
    .hero-brand {
        display: none;
    }
}

/* --- VALUE PROPOSITION SECTION --- */
.value-props {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.prop-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Green Circles */
.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-circle img {
    width: 40px; 
    height: auto;
}

.prop-item h3 {
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.prop-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
}

/* Mobile View */
@media (max-width: 768px) {
    .prop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .prop-item p {
        max-width: 100%;
    }
}

/* Solutions */
.solutions {
    padding: 100px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.solution-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

/* Icon Box Styles */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--brand-green);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-box img {
    width: 30px;
    filter: brightness(0) invert(1); 
}

.solution-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Bullet List Styles */
.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.solution-list li::before {
    content: "•";
    color: var(--brand-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .solutions { padding: 60px 20px; }
    .section-title { font-size: 2rem; }
}

/* Sectors Section */
.sectors {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.sectors .section-title {
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
}

.sector-icon {
    width: 100px;
    height: 100px;
    border: 1px solid #e0e4e8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background-color: transparent;
}

.sector-icon img {
    width: 40px; 
    height: auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(21%) saturate(1484%) hue-rotate(164deg) brightness(96%) contrast(97%);
}

.sector-item p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sector-icon {
        width: 80px;
        height: 80px;
    }
}

/* Academy Section */
.academy {
    padding: 100px 5%;
    background-color: #fdfdfb;
}

.academy-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.academy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.academy-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.academy-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Course List Styling */
.course-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.course-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    max-width: 500px;
}

.course-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    text-align: left;
}

.book-icon {
    color: var(--brand-green);
    font-size: 1.2rem;
}

/* Pill Badges */
.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background-color: var(--brand-green); 
}

.btn-dark {
    display: inline-block;
    background-color: var(--brand-dark);
    color: white;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

/* Right Graphic Animation */
.floating-graphic {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .academy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .academy-label, .course-list li {
        justify-content: center;
    }
    .academy-description {
        margin: 0 auto 40px auto;
    }
    .academy-visual {
        order: -1; 
    }
    .course-list li {
        max-width:100%;
        justify-content: space-between;
        padding: 16px 10px;
    }
    .course-info {
        justify-content: flex-start;
    }
}

/* Insights Section */
.insights {
    padding: 100px 5%;
    background-color: #ffffff;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.view-all {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

/* Grid Layout */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    display: flex;
    flex-direction: column;
}

/* Image & Badge */
.thumb-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 220px;
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Typography */
.insight-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; 
}

.read-more {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

/* Mobile View */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* About Section */
.about-section {
    padding: 100px 5%;
    background-color: #fdfdfb; 
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.upper-label {
    color: var(--brand-green);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-copy p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Horizontal Highlight List */
.highlight-list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 30px;
    margin-top: 40px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: inline-block;
}

/* Right Side Illustration */
.tech-graphic {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Responsive Mobile View */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 60px;
    }
    .about-headline {
        font-size: 2.5rem;
    }
    .highlight-list {
        flex-wrap: wrap;
        gap: 20px;
    }
    .about-visual {
        order: -1; 
        display: flex;
        justify-content: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: var(--brand-dark); 
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-subtext {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 50px;
    max-width: 450px;
    line-height: 1.6;
}

/* Contact Methods Left Side */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle-small {
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text .label {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.method-text a, .method-text span {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

/* Form Styling Right Side */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 15px;
    color: var(--brand-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-send {
    width: 100%;
    background-color: var(--brand-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.btn-send:hover {
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-headline {
        font-size: 2.5rem;
    }
}

/* Footer */
.main-footer {
    background-color: var(--brand-dark); 
    color: #ffffff;
    padding: 80px 5% 40px 5%;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Scaling the Brand Block for Footer */
.footer-logo-scale {
    transform: scale(0.7);
    transform-origin: left top;
    background-color: white !important;
}

/* Forcing footer brand text to be white for contrast */
.footer-logo-scale .main-title, 
.footer-logo-scale .sub-title, 
.footer-logo-scale .tagline {
    color: var(--brand-dark) !important;
}

.footer-slogan {
    margin-top: -15px; 
    color: #a0a0a0;
    font-size: 1rem;
}

/* Link Columns */
.main-footer h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--brand-green);
}

.footer-contact-col p, 
.footer-contact-col a {
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #2a3a4a;
    margin-bottom: 30px;
}

.footer-bottom p {
    color: #6a7a8a;
    font-size: 0.85rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 20px 40px 20px; 
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .footer-logo-scale {
        transform-origin: left top;
        padding: 10px;
        display: inline-block;
    }
    .footer-slogan {
        margin-top: 10px;
    }
}