* {
    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 */
.top-bar {
    background: #2b2b2b;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.top-bar .contact-info {
    display: flex;
    gap: 30px;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

.top-bar .contact-info i {
    margin-right: 8px;
}

nav {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    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: 35px;
    align-items: center;
}

.nav-menu .separator {
    color: #ddd;
    font-size: 18px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6600;
}

.nav-menu .search-icon {
    font-size: 16px;
}

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

.hero-slide.slider-1{
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/main-bg.jpg') center/cover no-repeat;
}

.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: 60px 0 20px;
}

.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: space-between;
    align-items: center;
    padding-top: 20px;
}

.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: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 15px;
    }
    
    .social-icons {
        order: 2;
    }
    
    .top-bar .contact-info {
        order: 1;
        flex-direction: column;
        gap: 8px;
    }
    
    nav .container {
        flex-direction: row;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .separator {
        display: none;
    }
    
    .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 {
    position: absolute;
    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;
    }
}