* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f8f8;
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
}



/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.6); /* translucent white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    width: 100%;
    max-width: 1300px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.05);

    border: 1px solid rgba(0, 0, 0, 0.05);
}


.logo {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 1rem;
}

.logo-icon {
    display: flex;
    width: 32px;
    height: 32px;
    
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #1e1e1e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: block;
}

.nav-links a:hover {
    background: #e9e9e9;
}

.get-in-touch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: background 0.3s;
    border: 1px solid #e9e9e9;
}

.get-in-touch:hover {
    background: rgba(205, 19, 19, 0.25);
}

.get-in-touch svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #1e1e1e;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: auto;          /* remove full screen forcing */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* start from top instead of center */
    align-items: center;
    padding: 6rem 3rem 2rem;   /* slightly reduced bottom space */
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}


.hero h1 {
    font-size: clamp(2rem, 9vw, 2rem);
    line-height: 1.2;
    margin: 4rem 0 3rem 0;
    font-weight: 600;
}

.hero p {
    font-size: clamp(0.8rem, 2vw, 1.0rem);
    color: #666666;
    margin-bottom: 3rem;
    max-width: 800px;
}


.hero-center {
    display: flex;
    justify-content: center;
    width: 100%;
}



/* Portfolio video */
.portfolio-video {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;

  /* 👇 Break out of parent max-width constraint */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.video-container {
  width: 100%;
  max-width: 1300px; /* now this will actually work */
  border: 3px solid #efeded;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  display: inline-block;
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  transform: scale(1.01) translateY(-2px);
}


/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .portfolio-video {
    padding: 2rem 1rem;
  }

  .video-container {
    border-radius: 20px;
    border-width: 2px;
    max-width: 350px; /* keeps it card-sized on mobile */
  }

  .video-container video {
    transform: scale(1.005) translateY(-1px);
  }
}


/* 📱 Extra small phones */
@media (max-width: 480px) {
  .portfolio-video {
    padding: 1.5rem 0.8rem;
  }

  .video-container {
    border-radius: 16px;
  }
}







/* Leadership Section Styles *//* Leadership Section Styles */
/* Leadership Section Styles *//* Leadership Section Styles */
/* Leadership Section Styles *//* Leadership Section Styles */
/* Leadership Section Styles *//* Leadership Section Styles */
/* Leadership Section Styles *//* Leadership Section Styles */
.home-hero {
    
   
   
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}



.home-hero__container {
    max-width: 1300px;
    width: 100%;
    position: relative;
}

.home-hero__main-card {
    background: #f8f8f8;
    border-radius: 30px;
    padding: 4rem;

    margin-bottom: 4rem;
}

.home-hero__header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-hero__label {
    color: #1e1e1e;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}


.home-hero__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e1e1e;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-hero__card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #d6d5d5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.home-hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1e1e1e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.home-hero__card:hover {
    background: white;
    border-color: #cbd5e1;
}

.home-hero__card:hover::before {
    transform: scaleX(1);
}

.home-hero__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #747474;
    stroke-width: 2;
}

.home-hero__card-content {
    color: #747474;
    font-size: 1.05rem;
    line-height: 1.6;
    flex: 1;
    text-align: left;
}



.home-hero__line-1 {
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    top: 15%;
    left: 10%;
    transform: rotate(-25deg);
}

.home-hero__line-2 {
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    bottom: 20%;
    right: 15%;
    transform: rotate(25deg);
}

@media (max-width: 768px) {
    .home-hero__title {
        font-size: 2.5rem;
    }

    .home-hero__subtitle {
        font-size: 1.1rem;
    }

    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__main-card {
        padding: 2rem;
    }
}










/* Button base */
.scroll-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;

    background: #fff;
    border-radius: 999px;
    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

/* Animated RGB gradient stroke */
.scroll-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* stroke thickness */
    border-radius: inherit;

    background: conic-gradient(
        from 0deg,
        #ff3b3b,
        #ffcc00,
        #2ecc71,
        #ff3b3b
    );

    animation: spinStroke 5s linear infinite;
    z-index: -1;
}

/* Inner white mask */
.scroll-cta::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: inherit;
    z-index: -1;
}

/* Hover effect */
.scroll-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.scroll-cta:hover::before {
    animation-duration: 2s;
}

/* Icon */
.scroll-cta svg {
    width: 20px;
    height: 20px;
    color: #000;
}

/* Animation */
@keyframes spinStroke {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




/* Section Headers */
.section-header {
    text-align: center;
    padding: 0rem 0rem 0rem;
    max-width: 1300px;
    margin-bottom: -1rem;
    
}



.section-header p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-header a {
    color: #ffffff;
    background: #0a0a0a;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: opacity 0.3s, transform 0.2s;
}

.section-header a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.section-header-center {
    text-align: center;
    padding: 1.2rem 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header-center h2 {
    font-size: clamp(2rem, 6vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header-center p {
    font-size: clamp(1rem, 2vw, 1rem);
    color: #666666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-header-center a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    background: #0a0a0a;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: opacity 0.3s, transform 0.2s;
}

.section-header-center a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}









.work-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* make the image cover the whole div */
    display: block;
}



/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: 1fr; /* always stack top-to-bottom */
    gap: 2rem;                  /* vertical spacing between items */
    padding: 0 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}


.work-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 3rem 1rem;
    max-width: 1440px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    aspect-ratio: 3/2;
}

.work-item:hover {
    transform: scale(1.02);
}

.work-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.work-logo {
    position: absolute;
    top: 4rem;
    left: 2rem;
    max-width: 140px;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1.2rem;
}

.work-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.work-info h3 {
    font-size: 1.0rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
}

.work-info a {
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.3s;
    display: inline-block;
}

.work-info a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
    background: #ededed;
    padding: 6rem 3rem;
    margin: 4rem auto;      /* centers it horizontally */
    max-width: 1330px;     /* control width */
    border-radius: 20px;
    text-align: center;
    margin-bottom: 8rem;
}

.darkroom-badge {
    display: inline-block;
    background: #e5e5e5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #0a0a0a;
}

.newsletter-section h2 {
    font-size: clamp(1.2rem, 5vw, 1.2rem);
    margin-bottom: 2rem;
    color: #0a0a0a;
}

.newsletter-section p {
    color: #666666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}



.newsletter-form button {
    padding: 1rem 2rem;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #0a0a0a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.98); /* almost solid, hides text underneath */
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);

    flex-direction: column;
    padding: 2rem 0;
    gap: 0;
    border-radius: 0;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


    .hero h1 {
        font-size: clamp(1.1rem, 9vw, 1.1rem);
        line-height: 1.4;
        margin-bottom: 3rem;
        font-weight: 600;
    }

     .section-header-center h2 {
        font-size: clamp(1.1rem, 9vw, 1.1rem);
        line-height: 1.4;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .section-header h2 {
        font-size: 1.1rem;
        font-size: z.2rem;
    font-weight: 600;
    text-align: left;
      
    }


  
    
    

    .newsletter-section h2 {
        font-size: clamp(1.1rem, 5vw, 1.1rem);
        margin-bottom: 2rem;
        color: #0a0a0a;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li:last-child {
        display: flex;
        justify-content: center;
        padding: 0 2rem;
    }

    .nav-links a {
        width: 100%;
        padding: 1.2rem 2rem;
        border-radius: 0;
    }

    .get-in-touch {
        margin: 1rem 0 0;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        border-radius: 50px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .work-grid-horizontal {
        grid-template-columns: 1fr;
    }

    .work-grid-horizontal .work-item {
        aspect-ratio: 5/2;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 2rem;
    }

    .work-item {
        aspect-ratio: 3/4;
    }

    .newsletter-section {
        margin: 2rem 1.5rem;
        padding: 4rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .section-header {
        padding: 2rem 0rem 0rem;
        text-align: center;
    }

    .work-grid-horizontal {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 2rem;
    }

    .work-grid-horizontal .work-item {
        aspect-ratio: 3/2;
    }
}



/* Responsive */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-section {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            padding: 80px 20px 40px;
            margin: 0 auto;
        }

        .contact-heading {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .contact-subtext {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #999;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            padding: 10px;
        }

        .contact-button {
            background: #fff;
            color: #000;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }




        /* ---------------- Footer Styles ---------------- */
        footer {
            background: #000;
            max-width: 1350px; /* reduce overall footer width */
            margin: 0 auto 40px auto; /* center footer and add 40px margin at bottom */
            padding: 0 20px 40px;     /* inner padding */
            color: #fff;
            border-radius: 30px;
            border-top: 1px solid #1a1a1a; /* optional */
        }

/* Contact Section (Let's get in touch) */
.contact-section {
    background: none;  /* instead of inherit */
    padding: 0; 
    text-align: center;
    padding: 60px 0;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-subtext {
    font-size: 1rem;
    margin-bottom: 24px;
}



.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Main Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: inherit; /* inherits footer background */
    
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 50px 40px;
    margin: 40px 0 60px 0;
}

.footer-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Footer Logo / Pages Section */
.footer-logo-section h2 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-contact {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* Footer Column - Social Links */
.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
}

/* Social Icons */
.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
    footer {
        max-width: 90%; /* keeps some margin on tablet screens */
        padding: 0 15px 40px; /* optional, reduces side padding */
    }
}

@media (max-width: 640px) {
    footer {
        max-width: 90%; /* almost full width on small phones */
        padding: 0 10px 40px;
    }
}

@media (max-width: 968px) {
    .footer-cta-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-cta-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-logo-section h2 {
        font-size: 0.9rem;
    }

    .footer-contact {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact a {
        display: block;
    }

    .footer-column h3 {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .contact-heading {
        font-size: 1.6rem;
    }

    .contact-subtext {
        font-size: 0.95rem;
    }

    .contact-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}




/* -STYLING FOR ABOUT PAGE- */

/* New wrapper for vertical stacking sections */
.section-wrapper {
    display: block;
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
}

.main-content {
    padding-top: 150px; /* adjust based on nav height */
}

/* Two-column layouts for specific sections */
.two-column-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

/* Ensure hero and education sections do not break */
.hero-section, .education-cert-section, .skills-tools-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Footer fix: keep icons visible */
.footer-links .social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    margin-top: 80px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    max-width: 420px;     /* controls how wide it can get */
    aspect-ratio: 3 / 4;  /* tall portrait shape */
    margin: 70px auto 0;  /* centers it */
    border-radius: 20px;
    overflow: hidden;
    
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.outside-design {
    margin-bottom: 80px;
}

.outside-design h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.outside-design p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.skills-tools-section {
    margin-bottom: 80px;
}

.skills {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1px;
    color: #1a1a1a;
}

.skills-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.skill-item, .tool-item {
    padding: 15px;
    background: #ededed;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
}

.skill-item:hover, .tool-item:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.education-cert-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 2px solid #ddd;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 5px;
}

.timeline-year {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.timeline-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.timeline-description {
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .education-cert-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 40px 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    .section-title,
    .outside-design h3 {
        font-size: 1.5rem;
    }

    .skills-grid, .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* -STYLING FOR CONTACT PAGE */
/* -STYLING FOR CONTACT PAGE */
/* -STYLING FOR CONTACT PAGE */
/* Reset */
/* ===== Contact Page Scoped ===== */
/* ONLY scope contact page content */

.container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.left-section {
    padding-right: 40px;
}

.left-section h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #000;
}

.left-section h1 span {
    color: #ffffff;
    font-weight: 500;
}

.social-section {
    margin-bottom: 40px;
}

.social-section h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffffff;
    opacity: 0.7;
}

.contact-section h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #999;
    margin-bottom: 12px;
}

.contact-section a {
    
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-section a:hover {
    opacity: 0.7;
}

.form-container {
    background-color: #131313;
    border-radius: 24px;
    padding: 60px;
    margin-top: 150px;
    margin-bottom: 100px;
}

.form-group {
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #ffffff;
    font-size: 1rem;
    padding: 12px 0;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 20px;
}

.submit-btn {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 18px 32px;
    color: #100e0e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-section {
        padding-right: 0;
    }

    .left-section h1 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 24px;
    }

    .left-section h1 {
        font-size: 2rem;
        margin-top: 6rem;
    }
}


/* -STYLING FOR mybluecross *//* -STYLING FOR mybluecross *//* -STYLING FOR mybluecross */
/* -STYLING FOR mybluecross *//* -STYLING FOR mybluecross *//* -STYLING FOR mybluecross */
.mybluecross {
    line-height: 1.5;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}

.mybluecross * {
    box-sizing: border-box;
}

.mybluecross-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.mybluecross-hero {
    padding: 80px 0 0px;
}

.mybluecross-hero h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 40px 0 24px 0;
    line-height: 1.1;
}

.mybluecross-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.5;
    max-width: 700px;
}

.mybluecross-meta {
    display: inline-block;
    font-size: 14px;
    color: #444;
    margin-bottom: 80px;
    border: 1.5px solid #bdbdbd; /* gray stroke */
    border-radius: 999px;     /* pill shape */
    background-color: transparent;
    padding: 8px 16px;
}



/* Poster Grid - 2 columns */
.mybluecross-poster-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.mybluecross-poster-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.mybluecross-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.mybluecross-section {
    margin-bottom: 120px;
}

.mybluecross-section-number {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
    font-weight: 500;
}

.mybluecross-section h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    line-height: 1.2;
    
}

.mybluecross-section h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 80px 0 5px 0;
    line-height: 1.2;
}

.mybluecross-section h3:first-of-type {
    margin-top: 10px;
}

.mybluecross-section p,
.mybluecross-body-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 0 24px 0 !important;
    max-width: 60% !important;
    font-weight: 400 !important;
}

/* Challenge Cards Grid */
.mybluecross-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 10px 0;
}

.mybluecross-challenge-card {
    background: #fafafa;
    padding: 32px;
    border-radius: 12px;
}

.mybluecross-challenge-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333; /* change as needed */
}

.mybluecross-challenge-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}

.mybluecross-card-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}


/* SWOT Analysis Grid */
.mybluecross-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* SWOT Grid */
.mybluecross-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* Base Card */
.mybluecross-swot-card {
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

/* ===== STRENGTHS ===== */
.mybluecross-swot-card.strengths {
    background: #e8f5e9;
}

.mybluecross-swot-card.strengths h4,
.mybluecross-swot-card.strengths p {
    color: #2e7d32;
}

/* ===== WEAKNESSES ===== */
.mybluecross-swot-card.weaknesses {
    background: #fdecea;
}

.mybluecross-swot-card.weaknesses h4,
.mybluecross-swot-card.weaknesses p {
    color: #c62828;
}

/* ===== OPPORTUNITIES ===== */
.mybluecross-swot-card.opportunities {
    background: #e3f2fd;
}

.mybluecross-swot-card.opportunities h4,
.mybluecross-swot-card.opportunities p {
    color: #1565c0;
}

/* ===== THREATS ===== */
.mybluecross-swot-card.threats {
    background: #fff3e0;
}

.mybluecross-swot-card.threats h4,
.mybluecross-swot-card.threats p {
    color: #ef6c00;
}

/* ===== TYPOGRAPHY (FULL WIDTH LOCK) ===== */
.mybluecross-swot-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.mybluecross-swot-card p {
    display: block;
    width: 100%;
    max-width: none !important; /* 🔒 critical */
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}


/* Persona Grid - 3 columns */
.mybluecross-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 10px 0 80px;
}

.mybluecross-persona-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.mybluecross-persona-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Single Large Image */
.mybluecross-single-img {
    
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0 80px;
    aspect-ratio: auto;
}

.mybluecross-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wireframe Grid - Vertical Images */
.mybluecross-wireframe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.mybluecross-wireframe-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.mybluecross-wireframe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mockup Grid - Mobile Screens */
.mybluecross-mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.mybluecross-mockup-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.mybluecross-mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .mybluecross-wireframe-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mybluecross-swot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mybluecross-hero h1 {
        font-size: 36px;
    }

    .mybluecross-hero-subtitle {
        font-size: 18px;
    }

    .mybluecross-section h2 {
        font-size: 16px;
    }

    .mybluecross-section h3 {
        font-size: 24px;
    }

    .mybluecross-section p,
    .mybluecross-body-text {
        max-width: 100% !important;
    }

    .mybluecross-poster-grid,
    .mybluecross-persona-grid,
    .mybluecross-mockup-grid {
        grid-template-columns: 1fr;
    }

    .mybluecross-challenge-grid,
    .mybluecross-swot-grid {
        grid-template-columns: 1fr;
    }

    .mybluecross-wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* -STYLING FOR  *//*  *//* -STYLING FOR MEGASHOP */
/* -STYLING FOR  *//* *//* -STYLING FOR MEGASHOP */
.megashop {
    line-height: 1.5;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}

.megashop * {
    box-sizing: border-box;
}

.megashop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.megashop-hero {
    padding: 80px 0 0px;
}

.megashop-hero h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 40px 0 24px 0;
    line-height: 1.1;
}

.megashop-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.5;
    max-width: 700px;
}

.megashop-meta {
    display: inline-block;
    font-size: 14px;
    color: #444;
    margin-bottom: 80px;
    border: 1.5px solid #bdbdbd; /* gray stroke */
    border-radius: 999px;     /* pill shape */
    background-color: transparent;
    padding: 8px 16px;
}



/* Poster Grid - 2 columns */
.megashop-poster-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 120px;
}

.megashop-poster-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 5/2;
}

.megashop-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.megashop-section {
    margin-bottom: 120px;
}

.megashop-section-number {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
    font-weight: 500;
}

.megashop-section h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    line-height: 1.2;
    
}

.megashop-section h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 80px 0 5px 0;
    line-height: 1.2;
}

.megashop-section h3:first-of-type {
    margin-top: 10px;
}

.megashop-section p,
.megashop-body-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 0 24px 0 !important;
    max-width: 60% !important;
    font-weight: 400 !important;
}

/* Challenge Cards Grid */
.megashop-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.megashop-challenge-card {
    background: #fafafa;
    padding: 32px;
    border-radius: 12px;
}

.megashop-challenge-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333; /* change as needed */
}

.megashop-challenge-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}

.megashop-card-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}


/* SWOT Analysis Grid */
.megashop-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* SWOT Grid */
.megashop-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* Base Card */
.megashop-swot-card {
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

/* ===== STRENGTHS ===== */
.megashop-swot-card.strengths {
    background: #e8f5e9;
}

.megashop-swot-card.strengths h4,
.megashop-swot-card.strengths p {
    color: #2e7d32;
}

/* ===== WEAKNESSES ===== */
.megashop-swot-card.weaknesses {
    background: #fdecea;
}

.megashop-swot-card.weaknesses h4,
.megashop-swot-card.weaknesses p {
    color: #c62828;
}

/* ===== OPPORTUNITIES ===== */
.megashop-swot-card.opportunities {
    background: #e3f2fd;
}

.megashop-swot-card.opportunities h4,
.megashop-swot-card.opportunities p {
    color: #1565c0;
}

/* ===== THREATS ===== */
.megashop-swot-card.threats {
    background: #fff3e0;
}

.megashop-swot-card.threats h4,
.megashop-swot-card.threats p {
    color: #ef6c00;
}

/* ===== TYPOGRAPHY (FULL WIDTH LOCK) ===== */
.megashop-swot-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.megashop-swot-card p {
    display: block;
    width: 100%;
    max-width: none !important; /* 🔒 critical */
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}


/* Persona Grid -  columns */
.megashop-persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0 30px;
}

.megashop-persona-card {
    background: none;
    border-radius: 0;
    overflow: visible;
    aspect-ratio: auto;
}


.megashop-persona-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Single Large Image */
.megashop-single-img {
    
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0 80px;
    aspect-ratio: auto;
}

.megashop-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wireframe Grid - Vertical Images */
.megashop-wireframe-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.megashop-wireframe-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.megashop-wireframe-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* Mockup Grid - Mobile Screens */
.megashop-mockup-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.megashop-mockup-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.megashop-mockup-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


/* Responsive */
@media (max-width: 1024px) {
    .megashop-wireframe-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .megashop-swot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .megashop-hero h1 {
        font-size: 36px;
    }

    .megashop-hero-subtitle {
        font-size: 18px;
    }

    .megashop-section h2 {
        font-size: 16px;
    }

    .megashop-section h3 {
        font-size: 24px;
    }

    .megashop-section p,
    .megashop-body-text {
        max-width: 100% !important;
    }

    .megashop-poster-grid,
    .megashop-persona-grid,
    .megashop-mockup-grid {
        grid-template-columns: 1fr;
    }

    .megashop-challenge-grid,
    .megashop-swot-grid {
        grid-template-columns: 1fr;
    }

    .megashop-wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* TERRA LEARNING PAGE*//* TERRA LEARNING PAGE*/
/* TERRA LEARNING PAGE*//* TERRA LEARNING PAGE*/
/* Reset and Base Styles */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #f5f5f5;
}

.header .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.header-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #0f172a;
}

@media (min-width: 640px) {
    .header-title {
        font-size: 2.25rem;
    }
}

.header-subtitle {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .header-subtitle {
        font-size: 1rem;
    }
}

/* Main Content */
.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .main-content {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main-content {
        padding: 3rem 0rem;
    }
}

/* Sections */
.section {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .section {
        margin-bottom: 4rem;
    }
}

.section-header {
    display: flex;
    align-items: center;
}

.icon-3d {
    font-size: 2.25rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 20px;
    }
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #f5f5f5;
    overflow: hidden;
}

.table-card {
    margin-bottom: 1.5rem;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #fafafa;
    border-bottom: 1px solid #f5f5f5;
}

.gradient-header {
    background: linear-gradient(to right, #dbeafe, #f3e8ff);
}

.data-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .data-table th {
        padding: 0.75rem 1.5rem;
    }
}

.data-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
}

.data-table tbody tr:hover {
    background: #fafafa;
}

.data-table td {
    padding: 1rem;
    font-size: 0.875rem;
    color: #666;
}

@media (min-width: 640px) {
    .data-table td {
        padding: 1rem 1.5rem;
    }
}

.font-medium {
    font-weight: 500;
    color: #0f172a;
}

.text-center {
    text-align: center;
}

.change-header {
    color: #15803d;
}

.change-text {
    font-weight: 600;
    color: #16a34a;
}

.impact-text {
    font-weight: 500;
    color: #16a34a;
}

/* Responsive table columns */
@media (max-width: 768px) {
    .hide-md {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }
}

/* Mobile Notice */
.mobile-notice {
    padding: 0.75rem 1rem;
    background: #dbeafe;
    border-top: 1px solid #93c5fd;
}

@media (min-width: 768px) {
    .mobile-notice {
        display: none;
    }
}

.mobile-notice p {
    font-size: 0.75rem;
    color: #666;
}

/* Process Flow */
.process-flow {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.process-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1rem;
}

.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .flow-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.flow-step {
    text-align: center;
}

.flow-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.flow-icon:hover {
    transform: scale(1.05);
}

.gradient-blue {
    background: linear-gradient(to bottom right, #dbeafe, #eff6ff);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #e9d5ff, #f3e8ff);
}

.gradient-green {
    background: linear-gradient(to bottom right, #d1fae5, #d9f99d);
}

.gradient-orange {
    background: linear-gradient(to bottom right, #fed7aa, #fef3c7);
}

.emoji {
    font-size: 1.875rem;
}

.flow-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #000000;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    transform: rotate(90deg);
}

@media (min-width: 640px) {
    .flow-arrow {
        transform: rotate(0deg);
    }
}

/* Findings Grid */
.findings-grid {
    display: grid;
    grid-template-columns: 1fr; /* mobile */
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .findings-grid {
      grid-template-columns: repeat(2, 1fr); /* desktop */
    }
  }
  


.finding-card {
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid;
    padding: 1rem;
    border: 1px solid #f5f5f5;
}

@media (min-width: 640px) {
    .finding-card {
        padding: 1.5rem;
    }
}

.border-blue {
    border-left: 3px solid #5A7A5A;
}


.border-green {
    border-left: 3px solid #5A7A5A;
}

.border-purple {
    border-left: 3px solid #5A7A5A;
}

.border-orange {
    border-left: 3px solid #5A7A5A;
}

.finding-title {
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .finding-title {
        font-size: 1rem;
    }
}

.finding-insight {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-blue {
    background: #FAFFFA;
    color: #5A7A5A;
}

.badge-green {
    background: #FAFFFA;
    color: #065f46;
}

.badge-purple {
    background: #FAFFFA;
    color: #5A7A5A;
}

.badge-orange {
    background: #FAFFFA;
    color: #5A7A5A;
}

/* Chart Card */
.chart-card {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.chart-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    width: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.chart-label {
    font-size: 0.875rem;
    color: #000000;
}

.chart-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #16a34a;
}

.progress-bar {
    width: 100%;
    background: #f1f5f9;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.progress-green {
    background: #10b981;
}

.progress-blue {
    background: #3b82f6;
}

.progress-purple {
    background: #8b5cf6;
}

.progress-orange {
    background: #f97316;
}

/* Reflection Card */
.reflection-card {
    background: #fafafa;
    border: 1px solid #ffffff;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .reflection-card {
        padding: 2rem;
    }
}

.reflection-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reflection-list li {
    display: flex;
    gap: 0.75rem;
}

.bullet {
    color: #3c3c3d;
    font-weight: bold;
    flex-shrink: 0;
}

.reflection-list p {
    color: #000000;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .reflection-list p {
        font-size: 1rem;
    }
}

.font-semibold {
    font-weight: 600;
}





/* TERRA DESKTOP IMAGE GRID */
/* ===== Terra Learning Grid ===== */
.terra-learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 0.4rem; /* tighter vertical spacing */
    margin: 2rem 0;
}

/* Remove inherited margins from image wrapper */
.terra-learning-grid .terra-learning-img {
    margin: 0;
}

/* Images */
.terra-learning-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.terra-learning-grid img:hover {
    transform: scale(1.02);
}

/* ===== Full-Screen Lightbox ===== */
.terra-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.terra-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.terra-lightbox img {
    width: 100vw;
    height: 100vh;
    object-fit: contain; /* scales image to fit screen without stretching */
    border-radius: 0;    /* remove rounded corners for fullscreen */
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .terra-learning-grid {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
    }
}


/* ===== Terra Mobile Screens Grid ===== */
.terra-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop: 3 per row */
    gap: 1rem;
    margin: 2rem 0;
}

/* Card wrapper */
.terra-mobile-card {
    margin: 0;
}

/* Images */
.terra-mobile-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.terra-mobile-card img:hover {
    transform: scale(1.02);
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
    .terra-mobile-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .terra-mobile-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
}



/* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*/
/* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*/
/* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*//* MOXIE PAGE*/

.moxie {
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}

.moxie * {
    box-sizing: border-box;
}

.moxie-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.moxie-hero {
    padding: 80px 0 0px;
}

.moxie-hero h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.moxie-hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0 0 32px 0;
    line-height: 1.5;
    max-width: 700px;
}

.moxie-meta {
    display: inline-block;
    font-size: 14px;
    color: #444;
    margin-bottom: 80px;
    border: 1.5px solid #bdbdbd; /* gray stroke */
    border-radius: 999px;     /* pill shape */
    background-color: transparent;
    padding: 8px 16px;
}



/* Poster Grid - 2 columns */
.moxie-poster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 120px;
}

.moxie-poster-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: auto;
}

.moxie-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.moxie-section {
    margin-bottom: 120px;
}

.moxie-section-number {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
    font-weight: 500;
}

.moxie-section h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    line-height: 1.2;
    
}

.moxie-section h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 80px 0 5px 0;
    line-height: 1.2;
}

.moxie-section h3:first-of-type {
    margin-top: 10px;
}

.moxie-section p,
.moxie-body-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 0 24px 0 !important;
    max-width: 60% !important;
    font-weight: 400 !important;
}
.moxie-list {
    margin: 0;              
    padding-left: 1.25rem;  
  }
  
  .moxie-list li {
    margin-bottom: 0.5rem;  
    line-height: 1.6;  
    font-size: 14px;  
    color: #666 ;   
  }
  

/* Challenge Cards Grid */
.moxie-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 10px 0;
}

.moxie-challenge-card {
    background: #fafafa;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.moxie-challenge-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333; /* change as needed */
}

.moxie-challenge-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}

.moxie-card-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-weight: 400 !important;
}


/* SWOT Analysis Grid */
.moxie-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* SWOT Grid */
.moxie-swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

/* Base Card */
.moxie-swot-card {
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

/* ===== STRENGTHS ===== */
.moxie-swot-card.strengths {
    background: #e8f5e9;
}

.moxie-swot-card.strengths h4,
.moxie-swot-card.strengths p {
    color: #2e7d32;
}

/* ===== WEAKNESSES ===== */
.moxie-swot-card.weaknesses {
    background: #fdecea;
}

.moxie-swot-card.weaknesses h4,
.moxie-swot-card.weaknesses p {
    color: #c62828;
}

/* ===== OPPORTUNITIES ===== */
.moxie-swot-card.opportunities {
    background: #e3f2fd;
}

.moxie-swot-card.opportunities h4,
.moxie-swot-card.opportunities p {
    color: #1565c0;
}

/* ===== THREATS ===== */
.moxie-swot-card.threats {
    background: #fff3e0;
}

.moxie-swot-card.threats h4,
.moxie-swot-card.threats p {
    color: #ef6c00;
}

/* ===== TYPOGRAPHY (FULL WIDTH LOCK) ===== */
.moxie-swot-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.moxie-swot-card p {
    display: block;
    width: 100%;
    max-width: none !important; /* 🔒 critical */
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}


/* Persona Grid - 3 columns */
.moxie-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.moxie-persona-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.moxie-persona-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Single Large Image */
.moxie-single-img {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0 80px;
    aspect-ratio: 16/9;
}

.moxie-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wireframe Grid - Vertical Images */
.moxie-wireframe-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.moxie-wireframe-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: auto;
}

.moxie-wireframe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mockup Grid - Mobile Screens */
.moxie-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0 80px;
}

.moxie-mockup-card {
    background: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.moxie-mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .moxie-wireframe-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .moxie-swot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .moxie-hero h1 {
        font-size: 36px;
    }

    .moxie-hero-subtitle {
        font-size: 18px;
    }

    .moxie-section h2 {
        font-size: 16px;
    }

    .moxie-section h3 {
        font-size: 24px;
    }

    .moxie-section p,
    .moxie-body-text {
        max-width: 100% !important;
    }

    .moxie-poster-grid,
    .moxie-persona-grid,
    .moxie-mockup-grid {
        grid-template-columns: 1fr;
    }

    .moxie-challenge-grid,
    .moxie-swot-grid {
        grid-template-columns: 1fr;
    }

    .moxie-wireframe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





