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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Antonio', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header { position: relative; }

/* Logo Bar */
.logo-bar {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 110px;
    display: block;
}

/* Nav Bar */
.main-nav {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative; z-index: 999;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 16px 22px;
    transition: color 0.3s, background 0.3s;
    text-transform: uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background: rgba(255,102,0,0.15);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/home-hero.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 170px;
}

.hero-content {
    max-width: 800px;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 0;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #ff6600;
    color: #fff;
    border: 2px solid #ff6600;
}

.btn-primary:hover {
    background: #ff7700;
    border-color: #ff7700;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ff6600;
}

.btn-secondary:hover {
    background: #ff6600;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-video:hover {
    background: #ff6600;
    border-color: #ff6600;
    transform: scale(1.1);
}

.btn-video i {
    font-size: 20px;
    margin-left: 3px;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

/* Why JewelStart Section */
.why-jewelstart {
    background: #ff6600;
    color: #fff;
    padding: 80px 0;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-logo h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.why-logo span {
    font-size: 40px;
}

.why-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-text p {
    font-size: 16px;
    line-height: 1.8;
}

/* Differentiator Section */
.differentiator {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.differentiator h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #333;
}

.highlight {
    color: #ff6600;
}

.subtitle {
    color: #999;
    margin-bottom: 60px;
    font-size: 16px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin: 0 auto;
}

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

.diff-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.diff-item h3 {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../images/how-its-work.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.process h2 {
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    z-index: 0;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #ff6600;
    border-radius: 50%;
    margin: 0px 62px 20px;
    position: relative;
    z-index: 2;
}

.timeline-item h4 {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0px 55px 0px;
}

.timeline-line {
    display: none;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: #fff;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.vision-image {
    flex: 0 0 45%;
}

.vision-image img {
    width: 100%;
    display: block;
}

.vision-text {
    flex: 1;
}

.vision-text h4 {
    color: #1a1a1a;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.vision-text h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: #ff6600;
}

.vision-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #151515;
}

.vision-text p {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bg-1.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* News Section */
.news {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.news h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.news-image {
    position: relative;
    overflow: hidden;
}

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

.news-image .read-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}

.news-image .read-more:hover {
    background: #ff6600;
}

.news-image .read-more i {
    margin-left: 5px;
    font-size: 10px;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* GJEPG Section */
.gjepg {
    background: #efefef;
    margin-bottom: 80px;
}

.gjepg .container {
    max-width: 100%;
    padding: 0;
}

.gjepg-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.gjepg-image {
    flex: 0 0 50%;
}

.gjepg-image img {
    width: 100%;
    display: block;
}

.gjepg-text {
    flex: 1;
    padding: 0 100px;
}

.gjepg-logo {
    height: 60px;
    margin-bottom: 30px;
}

.gjepg-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #333;
}

.gjepg-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}


.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-col p i {
    margin-right: 10px;
    color: #ff6600;
}

.newsletter {
    display: flex;
    margin-top: 25px;
    border: 1px solid #444;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
}

.newsletter input::placeholder {
    color: #666;
}

.newsletter button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.newsletter button:hover {
    color: #ff6600;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a i {
    font-size: 10px;
    margin-right: 8px;
}

.footer-col ul li a:hover {
    color: #ff6600;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.social-links a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff6600;
}

.gjepg-footer img {
    height: 50px;
}

.copyright {
    font-size: 14px;
    color: #fff;
}

/* Responsive */

/* Mobile */
@media(max-width:991px){
    .site-header{
        display: flex;
        justify-content: space-evenly;
        gap: 100px;
    }
    .site-header.nav-fixed{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
    }

    body.nav-is-fixed{
        padding-top: 120px; /* adjust as per header height */
    }

    .hamburger span{
        background-color: #111111;
    }

    .hamburger.active span{
        background-color: #ffffff;
    }

}


@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding: 80px 0 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.4);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .nav-menu li a {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .hero-slide {
        padding: 0 20px;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .why-content,
    .vision-content,
    .gjepg-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .diff-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-dot {
        margin: 0 auto 15px;
    }
    
    .timeline-item h4 {
        text-align: center;
        margin: 0;
    }
    
    .gjepg-text {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
    }
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/about-hero.jpg);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-position: -1000px -500px;
}

.about-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 16px;
    line-height: 1.6;
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-intro-left {
    flex: 1;
}

.about-intro-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 20px;
    text-align: left;
}

.about-intro-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Why Exists Section */
.why-exists {
    background: #ff6600;
    padding: 80px 0;
    color: #fff;
}

.why-exists-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.why-exists-left h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.why-exists-right p {
    font-size: 16px;
    line-height: 1.8;
}

/* Missing Middle Section */
.missing-middle {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.missing-middle h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.missing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
}

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

.missing-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.missing-item h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    color: #000000;
}

.missing-footer {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
}

/* Why Now Section */
.why-now {
    padding: 80px 0;
    background: #f5f5f5;
}

.why-now-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-now-image {
    flex: 0 0 45%;
}

.why-now-image img {
    width: 100%;
    display: block;
}

.why-now-text {
    flex: 1;
}

.why-now-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.why-now-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: #ff6600;
}

.why-now-text ul {
    list-style: none;
    padding: 0;
}

.why-now-text ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.why-now-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 20px;
}

/* Built Inside Section */
.built-inside {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/outdoor-gjepc.jpg') center/cover;
    color: #fff;
}

.built-inside-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.built-inside-left {
    flex: 0 0 30%;
}

.gjepc-logo {
    width: 100%;
    max-width: 250px;
}

.built-inside-right {
    flex: 1;
}

.built-inside-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.built-inside-right p {
    font-size: 16px;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: #fff;
}

.philosophy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    background-image: url(../images/philosophy.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding: 60px 0px;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.philosophy-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: #ff6600;
}

.philosophy-text ul {
    list-style: none;
    padding: 0;
}

.philosophy-text ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.philosophy-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3d3d3d;
    font-size: 20px;
    line-height: 1.3;
}

.philosophy-image {
    flex: 0 0 45%;
}

.philosophy-image img {
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
        background-position: center;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-intro-right {
        flex: none;
    }
    
    .why-exists {
        padding: 60px 0;
    }
    
    .why-exists-content,
    .why-now-content,
    .built-inside-content,
    .philosophy-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-exists-left h2 {
        font-size: 36px;
    }
    
    .missing-middle {
        padding: 60px 0;
    }
    
    .missing-middle h2 {
        font-size: 32px;
    }
    
    .missing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-now {
        padding: 60px 0;
    }
    
    .built-inside {
        padding: 60px 20px;
    }
    
    .philosophy {
        padding: 60px 0;
    }
    
    .philosophy-content {
        background-size: 80%;
        background-position: center bottom;
    }
}

/* Program Page Styles */

/* Program Hero Section */
.program-hero {
    background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)), url('../images/program-hero.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.program-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Program Intro Section */
.program-intro {
    padding: 80px 0;
    background: #fff;
}

.program-intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.program-intro-left {
    flex: 1;
}

.program-intro-left h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #ff7a00;
    text-align: right;
}

.program-intro-right {
    flex: 1;
}

.program-intro-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #191919;
    font-weight: 500;
}

/* How Works Section */
.how-works {
    padding: 80px 0;
    background: #f2f2f2;
    text-align: center;
}

.how-works h2 {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 60px;
    font-weight: 700;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.works-item {
    padding: 0;
    text-align: left;
}

.works-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

.works-item h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000000;
}

.works-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

/* Program Phases Section */
.program-phases {
    padding: 80px 0;
    background-image: url(../images/bg-3.jpg);
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.program-phases h2 {
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.phases-timeline {
    display: flex;
    justify-content: center;
    gap: 90px;
    max-width: 1100px;
    margin: 0 auto;
}

.phase-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.phase-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.phase-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.phase-arrow {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.phase-arrow img{
    width: auto;
    height: auto;
}


/* Who Apply Section */
.who-apply {
    padding: 80px 0;
    background: #fff;
}

.who-apply-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.who-apply-image {
    flex: 0 0 45%;
}

.who-apply-image img {
    width: 100%;
    display: block;
}

.who-apply-text {
    flex: 1;
}

.who-apply-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #ff7a00;
    font-weight: 700;
}

.who-apply-text ul {
    list-style: none;
    padding: 0;
}

.who-apply-text ul li {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.who-apply-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3d3d3d;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .program-hero {
        padding: 60px 20px;
    }
    
    .program-hero h1 {
        font-size: 36px;
    }
    
    .program-intro {
        padding: 60px 0;
    }
    
    .program-intro-content,
    .who-apply-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .program-intro-left h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .how-works {
        padding: 60px 0;
    }
    
    .how-works h2 {
        font-size: 32px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-phases {
        padding: 60px 20px;
    }
    
    .program-phases h2 {
        font-size: 32px;
    }
    
    .phases-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .phase-arrow {
        display: none;
    }
    
    .who-apply {
        padding: 60px 0;
    }
    
    .who-apply-text h2 {
        font-size: 32px;
    }
}

/* Ecosystem Page Styles */

/* Ecosystem Hero Section */
.ecosystem-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/ecosystem-hero.jpg) 0px -165px / cover;
    padding: 100px 0;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
}

.ecosystem-hero h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Access Section */
.access-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.access-section h2 {
    font-size: 50px;
    color: #ff7a00;
    margin-bottom: 25px;
    font-weight: 700;
}

.access-section p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #191919;
    max-width: 650px;
    margin: 0 auto;
}

/* Ecosystem Unlocks Section */
.ecosystem-unlocks {
    padding: 0;
    background: #f2f2f2;
}

.unlocks-content {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.unlocks-left {
    flex: 1;
    padding: 80px 0 80px 160px;
}

.unlocks-left h2 {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.unlocks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.unlock-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.unlock-item img {
    width: 50px;
    height: 50px;
}

.unlock-item h3 {
    font-size: 16px;
    font-weight: bold;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    color: #000000;
}

.unlocks-right {
    flex: 0 0 50%;
}

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

/* Why Matters Section */
.why-matters {
    padding: 80px 0;
    background: #fff;
}

.matters-content img {
   width: 100%;
   height: auto;
}

/* Embeds Section */
.embeds-section {
    padding: 80px 0;
    background: #ff6600;
    text-align: center;
    color: #fff;
}

.embeds-section h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .ecosystem-hero {
        padding: 60px 20px;
        background-position: center;
    }
    
    .ecosystem-hero h1 {
        font-size: 36px;
    }
    
    .access-section {
        padding: 60px 0;
    }
    
    .access-section h2 {
        font-size: 36px;
    }
    
    .ecosystem-unlocks {
        padding: 0;
    }
    
    .unlocks-content {
        flex-direction: column;
    }
    
    .unlocks-left {
        padding: 60px 20px;
    }
    
    .unlocks-left h2 {
        font-size: 32px;
    }
    
    .unlocks-list {
        grid-template-columns: 1fr;
    }
    
    .why-matters {
        padding: 60px 0;
    }
    
    .embeds-section {
        padding: 60px 20px;
        margin-bottom: 60px;
    }
    
    .embeds-section h2 {
        font-size: 32px;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/contact-hero.jpg') center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form-area h2,
.contact-info-area h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #666;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: #ff6600;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #ff7700;
}

/* Contact Info */
.contact-info-area {
    padding-left: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3d3d3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-details p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Map Section */

.map-section iframe {
    display: block;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.newsletter-text p {
    font-size: 14px;
    color: #999;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 0 0 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #666;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6600;
}

.newsletter-form .btn-submit {
    padding: 20px 35px;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-area {
        padding-left: 0;
    }
    
    .map-section {
        margin-bottom: 60px;
    }
    
    .newsletter-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex: 1;
        width: 100%;
        flex-direction: column;
    }
}
/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: #000;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.video-close:hover {
    color: #ccc;
}

#videoFrame {
    width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    #videoFrame {
        height: 250px;
    }
}
/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.partners-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.partners-carousel {
    display: block;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 10px 0px;
}

.partner-slide img {
    max-width: 250px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.partner-slide:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .logo img {
    height: 40px;
    display: block;
}

    .why-logo img{
        width: 100%;
        height: auto;
    }

    .footer-logo{
        height: 60px;
    }
    
    .partners-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .partner-slide img {
        max-width: 120px;
        max-height: 60px;
    }
}
/* Instagram Videos Section */
.instagram-videos {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.instagram-videos h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.instagram-slide {
    padding: 0 10px;
}

.instagram-media {
    background: #FFF;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15);
    margin: 1px;
    max-width: 540px;
    min-width: 326px;
    padding: 0;
    width: 99.375%;
    width: calc(100% - 2px);
}

.instagram-media:not(:root) {
    overflow: hidden;
}

@media (max-width: 768px) {
    .instagram-videos {
        padding: 40px 0;
    }
    
    .instagram-videos h2 {
        font-size: 28px;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .instagram-slide {
        padding: 0 5px;
    }
    
    .instagram-media {
        min-width: 280px;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .instagram-videos {
        padding: 30px 0;
    }
    
    .instagram-videos h2 {
        font-size: 24px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .instagram-slide {
        padding: 0 3px;
    }
    
    .instagram-media {
        min-width: 260px;
        width: 100%;
    }
}
/* Instagram Carousel Navigation */
.instagram-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.instagram-carousel .owl-nav button {
    background: #ff6600 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
    margin: 0 10px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.instagram-carousel .owl-nav button:hover {
    background: #ff7700 !important;
    transform: scale(1.1) !important;
}

.instagram-carousel .owl-nav button.owl-prev,
.instagram-carousel .owl-nav button.owl-next {
    outline: none !important;
}

.instagram-carousel .owl-nav button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .instagram-carousel .owl-nav {
        margin-top: 20px;
    }
    
    .instagram-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 14px !important;
        margin: 0 8px !important;
    }
    
    .instagram-carousel .owl-nav button i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .instagram-carousel .owl-nav {
        margin-top: 15px;
    }
    
    .instagram-carousel .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        font-size: 12px !important;
        margin: 0 5px !important;
    }
    
    .instagram-carousel .owl-nav button i {
        font-size: 10px;
    }
}
/* Visitor Counter */
.visitor-counter,
.visitor-counter-js {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.visitor-counter i,
.visitor-counter-js i {
    color: #ff6600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .visitor-counter,
    .visitor-counter-js {
        font-size: 11px;
        margin-bottom: 15px;
        justify-content: center;
    }
}
/* Challenge Form Styles */
.challenge-header {
    background: linear-gradient(135deg, #ff6600, #ff8800);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.challenge-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.challenge-logos img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.challenge-logos img.iit-logo {
    height: 100px;
}

.challenge-edition {
    display: inline-block;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.challenge-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.challenge-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.form-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.about-program {
    padding: 60px 0;
    background: #f9f9f9;
}

.about-program h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.about-program p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.info-usage {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-usage h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.info-usage ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.info-usage ul li {
    padding: 0px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.4;
}

.info-usage ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 18px;
}

.application-form {
    padding: 60px 0;
    background: #fff;
}

.form-section {
    margin-bottom: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 5px solid #ff6600;
}

.form-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section h3 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6600;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.team-table {
    overflow-x: auto;
    margin: 20px 0;
}

.team-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-table th,
.team-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.team-table th {
    background: #ff6600;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
}

.team-table input,
.team-table select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    cursor: pointer;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    font-size: 14px;
}

.checkbox-grid label:hover {
    border-color: #ff6600;
    background: #fff5f0;
}

.checkbox-grid input[type="checkbox"]:checked + label,
.checkbox-grid label:has(input[type="checkbox"]:checked) {
    border-color: #ff6600;
    background: #fff5f0;
}

.other-capability,
.other-support {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
}

.other-capability label,
.other-support label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.other-capability input[type="text"],
.other-support input[type="text"] {
    flex: 1;
    margin: 0;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
}

.document-upload {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.upload-item {
    display: flex;
    flex-direction: column;
}

.upload-item label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.upload-item input[type="file"],
.upload-item input[type="url"] {
    padding: 12px 15px;
    border: 2px dashed #e0e0e0;
    border-radius: 5px;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

.upload-item input[type="file"]:hover,
.upload-item input[type="url"]:focus {
    border-color: #ff6600;
}

.declaration-text {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.declaration-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.signature-section {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
    padding: 15px;
    background: #fff5f0;
    border-radius: 8px;
    border: 2px solid #ff6600;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.thank-you h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.thank-you p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-partners {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.program-partners p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .challenge-header {
        padding: 40px 20px;
    }
    
    .challenge-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .challenge-logos img {
        height: 40px;
    }
    
    .challenge-edition {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .challenge-header h1 {
        font-size: 28px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .document-upload {
        grid-template-columns: 1fr;
    }
    
    .team-table {
        font-size: 12px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}
/* Thank You Page Styles */
.thankyou-hero {
    background: linear-gradient(135deg, #ff6600, #ff8800);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #fff;
    margin-bottom: 30px;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

.thank-you-details {
    padding: 80px 0;
    background: #f9f9f9;
}

.thankyou-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-card h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #ff6600;
}

.step-number {
    background: #ff6600;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-info {
    margin: 40px 0;
    padding: 30px;
    background: #fff5f0;
    border-radius: 10px;
    border: 2px solid #ff6600;
}

.contact-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 600;
}

.contact-item i {
    color: #ff6600;
    font-size: 18px;
}

.program-partners {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.program-partners p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.partner-logos-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.partner-logos-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

.action-buttons {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 0;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #ff6600;
    color: #fff;
}

.social-share {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.social-share h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.social-share p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    color: #fff;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thankyou-hero {
        padding: 60px 20px;
    }
    
    .thankyou-hero h1 {
        font-size: 28px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .thankyou-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .thankyou-card h2 {
        font-size: 24px;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-logos {
        gap: 30px;
    }
    
    .partner-logos img {
        height: 40px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Step-wise Form Styles */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.step-item.active .step-number {
    background: #ff6600;
    color: #fff;
}

.step-item.active .step-title {
    color: #ff6600;
    font-weight: 600;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step-title {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 120px;
    line-height: 1.3;
    transition: all 0.3s;
}

.form-step {
    display: none;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #ff6600;
    margin-bottom: 30px;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.form-step h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.step-navigation .btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev {
    background: #6c757d;
    color: #fff;
}

.btn-prev:hover {
    background: #5a6268;
}

.btn-next {
    background: #ff6600;
    color: #fff;
}

.btn-next:hover {
    background: #ff7700;
}

/* Mobile Responsive for Steps */
@media (max-width: 768px) {
    .step-progress {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .step-progress::before {
        display: none;
    }
    
    .step-item {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
    }
    
    .step-item.active {
        border-color: #ff6600;
        background: #fff5f0;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-title {
        font-size: 14px;
        max-width: none;
        text-align: left;
    }
    
    .form-step {
        padding: 20px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-navigation .btn {
        width: 100%;
        padding: 15px;
    }
}
/* Mobile responsive for info-usage */
@media (max-width: 768px) {
    .info-usage ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===== ONE-PAGER NAV ===== */
.ic-onepager-nav a.ic-nav-apply-btn {
    background: #ff6600;
    color: #fff !important;
    padding: 10px 20px;
    margin: 8px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}
.ic-onepager-nav a.ic-nav-apply-btn:hover {
    background: #e05500;
}

/* ===== SHARED SECTION STYLES ===== */
.ic-section { padding: 80px 0; }
.ic-section-white { background: #fff; }
.ic-section-light { background: #f7f7f7; }
.ic-section-orange { background: #ff6600; }
.ic-section-dark { background: #1a1a1a; color: #fff; }
.ic-section-dark-bg {
    background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)), url('../images/bg-1.jpg') center/cover;
    color: #fff;
}
.ic-text-center { text-align: center; }

.ic-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 10px;
}
.ic-label-white { color: #fff; opacity: 0.7; }

.ic-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.ic-section-dark h2,
.ic-section-dark-bg h2 { color: #fff; }
.ic-section-orange h2 { color: #fff; }

.ic-section-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 auto 50px;
}
.ic-section-dark .ic-section-intro,
.ic-section-dark-bg .ic-section-intro { color: #ccc; }
.ic-section-orange .ic-section-intro { color: rgba(255,255,255,0.85); }

/* ===== HERO ===== */
.ic-hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/main-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
}
.ic-hero .container { position: relative; z-index: 2; }
.ic-hero-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.ic-hero-logos img { height: 55px; filter: brightness(0) invert(1); }
.ic-hero-logos .ic-hero-sine-logo { height: 80px; }
.ic-hero-logo-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.4);
}
.ic-edition-badge {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.ic-hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 800px;
}
.ic-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 680px;
    opacity: 0.9;
}
.ic-hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.ic-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.ic-btn-outline:hover { border-color: #ff6600; background: #ff6600; }

/* ===== TWO-COL LAYOUT ===== */
.ic-two-col {
    display: flex;
    align-items: center;
    gap: 70px;
}
.ic-two-col-reverse { flex-direction: row-reverse; }
.ic-two-col-text { flex: 1; }
.ic-two-col-text h2 { margin-bottom: 20px; }
.ic-two-col-text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px;text-align: justify; }
.ic-text-white h2,
.ic-text-white p { color: #fff;text-align: justify; }
.ic-text-white p { opacity: 0.9; }
.ic-two-col-image { flex: 0 0 42%; }
.ic-two-col-image img { width: 100%; display: block; border-radius: 4px; }

/* ===== WHY CHALLENGE GRID ===== */
.ic-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.ic-why-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ic-why-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.ic-why-item i { font-size: 36px; color: #ff6600; margin-bottom: 18px; }
.ic-why-item h3 { font-size: 18px; margin-bottom: 10px; color: #222; }
.ic-why-item p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }

/* ===== PROBLEM STATEMENTS ===== */
.ic-ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    text-align: left;
}
.ic-ps-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 30px 25px;
    border-radius: 6px;
    transition: background 0.3s, border-color 0.3s;
}
.ic-ps-card:hover { background: rgba(255,102,0,0.15); border-color: #ff6600; }
.ic-ps-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6600;
    font-family: 'Antonio', sans-serif;
    margin-bottom: 12px;
    line-height: 1;
}
.ic-ps-card h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
.ic-ps-card p { font-size: 14px; color: #bbb; line-height: 1.6; margin: 0; }
.ic-ps-note {
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
}
.ic-ps-note i { margin-right: 6px; color: #ff6600; }

/* ===== WHO APPLY CHECK LIST ===== */
.ic-check-list { list-style: none; padding: 0; margin: 20px 0; }
.ic-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
    line-height: 1.5;
}
.ic-check-list li i { color: #ff6600; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.ic-note { font-size: 13px; color: #888; margin-top: 15px; }
.ic-note i { margin-right: 5px; color: #ff6600; }

/* ===== TIMELINE ===== */
.ic-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
    flex-wrap: nowrap;
}
.ic-timeline-item {
    flex: 1;
    text-align: center;
    max-width: 180px;
}
.ic-timeline-icon {
    width: 64px;
    height: 64px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.ic-timeline-icon i { font-size: 24px; color: #fff; }
.ic-timeline-content h3 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.ic-timeline-content p { font-size: 13px; color: #bbb; line-height: 1.5; margin-bottom: 8px; }
.ic-timeline-month {
    display: inline-block;
    background: rgba(255,102,0,0.2);
    color: #ff6600;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.ic-timeline-arrow {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    flex-shrink: 0;
    padding-left: 5px;
    padding-right: 5px;
}

/* ===== BENEFITS GRID ===== */
.ic-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.ic-benefit-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.ic-benefit-card:hover { border-color: #ff6600; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.ic-benefit-icon { font-size: 32px; color: #ff6600; margin-bottom: 15px; }
.ic-benefit-card h3 { font-size: 16px; color: #222; margin-bottom: 10px; }
.ic-benefit-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ===== SINE SECTION ===== */
.ic-sine-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.ic-stat { text-align: center; }
.ic-stat span { display: block; font-size: 32px; font-weight: 700; color: #ff6600; font-family: 'Antonio', sans-serif; }
.ic-stat p { font-size: 13px; color: #666; margin: 0; }
.ic-sine-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.ic-sine-img { max-width: 260px; width: 100%; }
.ic-sine-disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
    text-align: left;
}

/* ===== FAQs ===== */
.ic-faq-list { max-width: 850px; margin: 50px auto 0; }
.ic-faq-item { border-bottom: 1px solid #e0e0e0; }
.ic-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}
.ic-faq-question:hover { color: #ff6600; }
.ic-faq-question i { font-size: 14px; color: #ff6600; transition: transform 0.3s; flex-shrink: 0; }
.ic-faq-item.open .ic-faq-question i { transform: rotate(45deg); }
.ic-faq-answer { display: none; padding: 0 0 20px; }
.ic-faq-item.open .ic-faq-answer { display: block; }
.ic-faq-answer p { font-size: 15px; color: #555; line-height: 1.7; margin: 0; }

/* ===== PARTNERS ===== */
.ic-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0 20px;
}
.ic-partner-item { text-align: center; }
.ic-partner-item img { height: 60px; object-fit: contain; filter: grayscale(30%); transition: filter 0.3s; }
.ic-partner-item img:hover { filter: grayscale(0%); }
.ic-partner-item p { font-size: 12px; color: #999; margin-top: 10px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT ===== */
.ic-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.ic-contact-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.ic-contact-icon {
    width: 60px;
    height: 60px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ic-contact-icon i { font-size: 22px; color: #fff; }
.ic-contact-card h3 { font-size: 18px; color: #222; margin-bottom: 10px; }
.ic-contact-card p { font-size: 15px; color: #555; margin: 0; line-height: 1.6; }
.ic-contact-note { font-size: 12px !important; color: #999 !important; margin-top: 5px !important; }

/* ===== APPLY SECTION ===== */
.ic-apply-section {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/bg-3.jpg') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.ic-apply-section h2 { font-size: 48px; color: #fff; margin-bottom: 20px; }
.ic-apply-section p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.ic-apply-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.ic-apply-btn { font-size: 15px; padding: 16px 35px; display: inline-flex; align-items: center; gap: 10px; }
.ic-btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 16px 35px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ic-btn-white-outline:hover { background: #fff; color: #ff6600; border-color: #fff; }

/* ===== TERMS ===== */
.ic-terms-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 40px;
}
.ic-terms-list { list-style: none; padding: 0; }
.ic-terms-list li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    padding-left: 20px;
    position: relative;
}
.ic-terms-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 18px;
    line-height: 1.5;
}
.ic-terms-list li:last-child { border-bottom: none; }
.ic-terms-note { font-size: 13px; color: #999; margin-top: 20px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ic-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ic-section { padding: 80px 0; }
    .ic-hero { min-height: auto; padding: 80px 0 60px; }
    .ic-hero h1 { font-size: 32px; }
    .ic-hero-subtitle { font-size: 15px; }
    .ic-hero-logos { flex-wrap: wrap; gap: 15px; }
    .ic-hero-logo-divider { display: none; }
    .ic-hero-buttons { flex-direction: column; }
    .ic-section h2 { font-size: 30px; }
    .ic-two-col,
    .ic-two-col-reverse { flex-direction: column; gap: 40px; }
    .ic-two-col-image { flex: none; width: 100%; }
    .ic-why-grid,
    .ic-ps-grid { grid-template-columns: 1fr; }
    .ic-benefits-grid { grid-template-columns: 1fr 1fr; }
    .ic-contact-grid { grid-template-columns: 1fr; }
    .ic-timeline { flex-direction: column; align-items: center; gap: 20px; }
    .ic-timeline-arrow { display: none; }
    .ic-timeline-item { max-width: 100%; width: 100%; }
    .ic-sine-stats { gap: 20px; }
    .ic-apply-section h2 { font-size: 32px; }
    .ic-apply-buttons { flex-direction: column; align-items: center; }
    .ic-terms-box { padding: 25px 20px; }
    .ic-partners-logos { gap: 30px; }
}

@media (max-width: 480px) {
    .ic-benefits-grid { grid-template-columns: 1fr; }
}

/* Nav fixed on scroll */
.main-nav.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

body.nav-is-fixed { padding-top: 50px; }

/* ===== PROBLEM STATEMENTS SLIDER ===== */
.ic-ps-slider-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
}

.ic-ps-slider {
    overflow: hidden;
    flex: 1;
}

.ic-ps-slide {
    display: none;
}

.ic-ps-slide.active {
    display: block;
    animation: psFadeIn 0.4s ease;
}

@keyframes psFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.ic-ps-slide-inner {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px;
    text-align: left;
}

.ic-ps-slide-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ic-ps-num {
    font-size: 52px;
    font-weight: 700;
    color: #ff6600;
    font-family: 'Antonio', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.ic-ps-slide-header h3 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.ic-ps-slide-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ic-ps-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 8px;
    margin-top: 20px;
}

.ic-ps-col h4:first-child {
    margin-top: 0;
}

.ic-ps-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
    margin: 0;
}

.ic-ps-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ic-ps-col ul li {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ic-ps-col ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 18px;
    line-height: 1.3;
}

.ic-ps-nav {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
    font-size: 16px;
}

.ic-ps-nav:hover {
    background: #ff6600;
    border-color: #ff6600;
}

.ic-ps-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ic-ps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.ic-ps-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.ic-ps-dots span.active {
    background: #ff6600;
    transform: scale(1.3);
}

.ic-ps-footer-note {
    margin-top: 30px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.ic-ps-footer-note i {
    color: #ff6600;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .ic-ps-slider-wrap { gap: 8px; }
    .ic-ps-slide-inner { padding: 25px 20px; }
    .ic-ps-slide-body { grid-template-columns: 1fr; gap: 20px; }
    .ic-ps-slide-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ic-ps-num { font-size: 36px; }
    .ic-ps-slide-header h3 { font-size: 18px; }
    .ic-ps-nav { width: 36px; height: 36px; font-size: 13px; }
}

/* Application form additions */
.field-hint {
    font-weight: 400;
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}
.char-count {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}
.form-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ===== PHASES TABLE ===== */
.ic-phases-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
}
.ic-phases-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.ic-phases-table thead tr {
    background: rgba(255,102,0,0.8);
}
.ic-phases-table th {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}
.ic-phases-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.ic-phases-table tbody tr:hover {
    background: rgba(255,255,255,0.05);
}
.ic-phases-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: #ccc;
    vertical-align: top;
    line-height: 1.6;
}
.ic-phases-table td strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}
.ic-phase-badge {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .ic-phases-table th,
    .ic-phases-table td { padding: 12px 12px; font-size: 13px; }
}

/* ===== PITCH DECK CTA ===== */
.pitch-deck-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff5f0;
    border: 1px solid #ffd5b8;
    border-left: 4px solid #ff6600;
    padding: 18px 25px;
    border-radius: 6px;
    margin-top: 25px;
    gap: 20px;
    flex-wrap: wrap;
}
.pitch-deck-cta p {
    margin: 0;
    font-size: 15px;
    color: #444;
}
.pitch-deck-cta p i {
    color: #ff6600;
    margin-right: 8px;
}
.pitch-deck-cta .btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 10px 20px;
}

/* ===== FORM SECTION SUB HEADING ===== */
.section-sub {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    font-family: 'Poppins', sans-serif;
    margin-left: 8px;
}

/* ===== REQUIRED ROW INDICATOR ===== */
.req-star {
    color: #ff6600;
    font-weight: 700;
}
.team-row-required td {
    background: rgba(255,102,0,0.04);
}

/* ===== TEMPLATE LINK IN UPLOAD ===== */
.template-link {
    font-size: 12px;
    color: #ff6600;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}
.template-link:hover { text-decoration: underline; }
.template-link i { margin-right: 4px; }

/* Benefits grid 3-col for 6 items */
@media (min-width: 1024px) {
    .ic-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
