body{
    margin: 0;   
    overflow-x: hidden;  
}
.no-scroll{
    overflow:hidden;
}
#container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
}
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar {
    position: fixed;  
    z-index: 1000;  
    width: 100%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px); 
    padding: 15px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; 
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;   
}

.nav-container a{
    text-decoration: none;
}

.logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 21px;
    font-weight: 300;
    transition: 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #181200;
    transition: 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #f7c948;
}

/* Hamburger button — hidden on desktop */
.menu-btn {
    display: none;
    background: url("https://d1oc8cgqbx2xxb.cloudfront.net/static/assets/menu.png") no-repeat center;
    background-size: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 1100;
    flex-shrink: 0;
}

.menu-btn.active {
    background: url("https://d1oc8cgqbx2xxb.cloudfront.net/static/assets/close.png") no-repeat center;
    background-size: 25px;
}

.HeroContainer{    
    background-image: url(https://d1oc8cgqbx2xxb.cloudfront.net/static/assets/hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    min-height: 120vh;
    animation: fadeUp 1s ease;
    padding-bottom: 100px;
    filter: brightness(100%);
}

.hero-esg{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero-title{
    font-size:140px;
    font-weight:900;
    color:white;
    font-family:'Segoe UI', sans-serif;
    letter-spacing:6px;    
    text-align:center;    
    z-index:5;
}

.hero-img-tile{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 40px;  
    gap: 20px;    
}

.hero-img-tile img{
    object-fit: cover;
    border-radius: 16px;
    height: 280px;
    width: 30%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0;
    font-style: bolder;
}

.hero-cta {
    display: inline-block;
    background: #f7c948;
    color: #111;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
    box-shadow: 0 6px 24px rgba(247, 201, 72, 0.4);
}

.hero-cta:hover {
    background: #ffd96e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 201, 72, 0.55);
}

.tile {
    position: relative;
    width: 30%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.tile.show {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    text-align: center;
}

.overlay h3 {
    color: white;
    font-size: 28px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.tile:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
}

.tile:hover .overlay {
    opacity: 1;
}

.tile:hover .overlay h3 {
    transform: translateY(0);
}

.quote1{
    margin: 0;
    text-align: center;
    color: white;
    padding: 35vh 0 20vh 0;
    font-size: 42px;
    font-family: cursive;
    font-style: italic;
}

@keyframes fadeUp{
    from{ opacity:0; transform:translateY(40px); }
    to{ opacity:1; transform:translateY(0); }
}

.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 0 6% 120px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 38px 32px;
    width: calc(30% - 20px);
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
}

.feat-card.show {
    opacity: 1;
    transform: translateY(0);
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.feat-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feat-title {
    color: #f7c948;
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.feat-desc {
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

/* Timeline */
.timeline-section {
    padding: 60px 6% 100px;
}

.timeline-heading {
    text-align: center;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.timeline-heading.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.timeline-step.show {
    opacity: 1;
    transform: translateY(0);
}

.step-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(247, 201, 72, 0.15);
    border: 2px solid #f7c948;
    color: #f7c948;
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(247, 201, 72, 0.25);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .step-bubble {
    background: rgba(247, 201, 72, 0.3);
    box-shadow: 0 0 36px rgba(247, 201, 72, 0.45);
}

.step-connector {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f7c948, rgba(247, 201, 72, 0.2));
    margin-top: -33px;
    position: relative;
    z-index: 1;
}

.step-connector.last {
    background: transparent;
}

.step-card {
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-step:hover .step-card {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.step-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 12px;
}

.step-card h4 {
    color: #f7c948;
    font-family: 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: 0.4px;
}

.step-card p {
    color: rgba(255,255,255,0.72);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}
/* ESG Report Section */
.esg-report-section {
    position: relative;
    margin: 0 5% 100px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 420px;
}
.esg-report-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.esg-report-left { position: relative; z-index: 2; flex: 1.1; min-width: 0; }
.esg-report-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 201, 72, 0.12);
    border: 1px solid rgba(247, 201, 72, 0.35);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    color: #f7c948;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.esg-report-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #f7c948;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}
.esg-report-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}
.esg-report-title span { color: #f7c948; }
.esg-report-subtitle {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.70);
    max-width: 500px;
    margin: 0 0 36px;
}
.esg-report-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.esg-pill {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    font-family: 'Segoe UI', sans-serif;
}
.esg-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #f7c948; flex-shrink: 0; }
.esg-report-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: #f7c948; color: #111;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px; font-weight: 700;
    text-decoration: none;
    padding: 15px 34px; border-radius: 50px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 24px rgba(247, 201, 72, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.esg-report-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(247, 201, 72, 0.55);
    background: #ffd96e;
}
.esg-report-right {
    position: relative; z-index: 2; flex: 0.9;
    display: flex; align-items: center; justify-content: center;
    min-height: 320px;
}
.esg-img-slot {
    width: 100%; max-width: 380px;
    aspect-ratio: 4/3;
    border-radius: 20px;
    border: 2px dashed rgba(247, 201, 72, 0.4);
    background: rgba(247, 201, 72, 0.04);
    position: relative; overflow: hidden;
}
.esg-report-img {
    width: 100%; max-width: 900px;
    aspect-ratio: 4/3;
    object-fit: cover; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.esg-img-corner {
    position: absolute; width: 24px; height: 24px;
    border-color: rgba(247, 201, 72, 0.5); border-style: solid;
}
.esg-img-corner.tl { top:12px; left:12px; border-width:2px 0 0 2px; border-radius:4px 0 0 0; }
.esg-img-corner.tr { top:12px; right:12px; border-width:2px 2px 0 0; border-radius:0 4px 0 0; }
.esg-img-corner.bl { bottom:12px; left:12px; border-width:0 0 2px 2px; border-radius:0 0 0 4px; }
.esg-img-corner.br { bottom:12px; right:12px; border-width:0 2px 2px 0; border-radius:0 0 4px 0; }

/* Mobile */
@media (max-width: 768px) {
    .esg-report-section { flex-direction: column; padding: 50px 24px; gap: 36px; margin: 0 4% 70px; }
    .esg-report-title { font-size: 26px; }
    .esg-report-subtitle { font-size: 14px; }
    .esg-report-right { width: 100%; }
}
/* CTA Banner */
.cta-banner {
    position: relative;
    margin: 0 5% 100px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(247, 201, 72, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 40px;
}

.cta-heading {
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: 1px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f7c948;
    color: #111;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 24px rgba(247, 201, 72, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(247, 201, 72, 0.55);
    background: #ffd96e;
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 40px 40px;
    gap: 40px;
}

.footer-column {
    max-width: 300px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00c9a7;
}

.footer-social a {
    color: #bbb;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00c9a7;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0a0a0a;
    font-size: 14px;
    color: #888;
}

/* ── Mobile Responsiveness (single clean block) ── */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 12px 0;
        border-radius: 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        gap: 0;
    }

    .logo {
        font-size: 18px;
    }

    .menu-btn {
        display: block;
    }

    /* Mobile nav overlay */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(1, 1, 1, 0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1050;
        margin: 0;
        padding: 0;
        gap: 0;
    }

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

    /* Single white card for all links */
    .nav-links li {
        width: 280px;
        background: #fff;
        margin: 0;
        text-align: center;
    }

    .nav-links li:first-child { border-radius: 10px 10px 0 0; }
    .nav-links li:last-child  { border-radius: 0 0 10px 10px; }

    .nav-links li a {
        display: block;
        padding: 18px 0;
        color: #222;
        font-size: 1.1rem;
        font-weight: 600;
        background: none;
        width: 100%;
        border-radius: 0;
        transition: 0.3s ease;
    }

    .nav-links li a:hover {
        color: #f7c948;
        background: rgba(0,0,0,0.04);
    }

    .nav-links li a::after {
        display: none;
    }

    /* Hero */
    .HeroContainer {
        background-attachment: scroll;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: 2px;
        padding-top: 20px;
    }

    /* Tiles */
    .hero-img-tile {
        flex-direction: column;
        align-items: center;
        padding: 0 20px 40px;
        gap: 16px;
    }
    .hero-subtitle {
        font-size: 15px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .hero-cta {
        font-size: 14px;
        padding: 12px 28px;
    }

    .tile {
        width: 90%;
        height: 200px;
    }

    /* Quote */
    .quote1 {
        font-size: 22px;
        padding: 12vh 24px 10vh;
    }

    /* Feature Cards */
    .features-section {
        padding: 0 5% 70px;
        gap: 18px;
    }

    .feat-card {
        width: 100%;
        min-width: unset;
        padding: 28px 22px;
    }

    /* Timeline */
    .timeline-section {
        padding: 40px 5% 70px;
    }

    .timeline-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .timeline-track {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .timeline-step {
        flex-direction: row;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        gap: 20px;
    }

    .step-bubble {
        width: 48px;
        height: 48px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        margin-top: 0;
        text-align: left;
        flex: 1;
        padding: 20px 18px;
    }

    .step-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .step-card h4 {
        font-size: 15px;
    }

    /* CTA */
    .cta-banner {
        margin: 0 4% 70px;
        border-radius: 20px;
    }

    .cta-content {
        padding: 50px 24px;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-sub {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    /* Hide butterfly canvas on mobile */
    #container {
        display: none;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 24px 40px;
        text-align: center;
    }

    .footer-column {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }

    .quote1 {
        font-size: 18px;
    }

    .cta-heading {
        font-size: 22px;
    }
}