@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;


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

html::-webkit-scrollbar {
    width: 8px;

}

html {
    scroll-behavior: smooth;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: #f9f0ef;
    overflow-x: hidden;
}

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
}


section {
    padding: 80px 20px;
    margin: 0 auto;
}


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


.flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1320px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    padding: 12px 28px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 8px 24px;
}

.main-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav.scrolled .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0 4px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.25s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.06);
}

.nav-links a.active {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2b 100%);
    color: white !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.38);
    background: linear-gradient(135deg, #ff7c4b 0%, #f0683a 100%);
}

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


.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #2d3748;
    position: absolute;
    border-radius: 2px;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -6px;
}

.hamburger-inner::after {
    content: "";
    bottom: -6px;
}

.menu-toggle.open .hamburger-inner {
    transform: rotate(45deg);
}

.menu-toggle.open .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.menu-toggle.open .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu.active {
    transform: translateX(-320px);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu li {
    margin: 0;
    width: 100%;
}

.mobile-menu a {
    text-decoration: none;
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.25s ease;
}

.mobile-menu a:hover {
    background-color: rgba(255, 107, 53, 0.05);
    color: #ff6b35;
}

.mobile-menu a.active {
    background-color: rgba(255, 107, 53, 0.09);
    color: #ff6b35;
}

.but {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 20px;
}

.Apply_but {
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2b 100%);
    color: white;
    border: none;
    text-decoration: none;
}

@media (max-width: 992px) {
    .navbar {
        width: 94%;
        top: 10px;
    }

    .main-nav {
        padding: 10px 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


.hero {
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.02) 0%, transparent 40%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.content-block {
    max-width: 100%;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
    color: #2d3748;
}

.highlight-text {
    color: #ff6b35;
}

.highlight-text2 {
    color: #EBA65C;
    font-size: 2rem;
}

.description-text {
    font-size: 20px;
    max-width: 100%;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 32px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2b 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.primary-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}

.primary-btn:hover::after {
    transform: translateX(4px);
}

.visual-section {
    position: absolute;
    right: -450px;
    top: 50%;
    transform: translateY(-50%);
    width: 1200px;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

.visual-section:hover {
    transform: translateY(-50%) scale(1.04);
}


.showcase-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 25px;
}

.showcase-tab-btn {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.showcase-tab-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.showcase-tab-btn.active {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}

.innovation-animation-panel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-svg-standalone {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(255, 107, 53, 0.08));
}


.gear {
    transform-origin: center;
}

.gear-lg {
    animation: rotate-cw 25s linear infinite;
    filter: drop-shadow(0 6px 15px rgba(79, 70, 229, 0.18));
}

.gear-md {
    animation: rotate-ccw 18s linear infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 180, 216, 0.25));
}

.gear-sm {
    animation: rotate-cw 12s linear infinite;
}

@keyframes rotate-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ccw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


.circuit-line {
    stroke: rgba(74, 85, 104, 0.22);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 6 4;
}

.glowing-path {
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 30 150;
    animation: travel-pulse 6s linear infinite;
}

@keyframes travel-pulse {
    from {
        stroke-dashoffset: 180;
    }

    to {
        stroke-dashoffset: -180;
    }
}


.bulb-filament {
    animation: pulse-filament 4s ease-in-out infinite;
}

.bulb-aura {
    animation: pulse-aura 4s ease-in-out infinite;
}

.bulb-glass-glow {
    animation: pulse-glass-glow 4s ease-in-out infinite;
}

@keyframes pulse-glass-glow {
    0% {
        opacity: 0.02;
    }

    15% {
        opacity: 0.02;
    }

    20% {
        opacity: 0.5;
    }

    25% {
        opacity: 0.1;
    }

    30% {
        opacity: 0.9;
    }

    75% {
        opacity: 0.9;
    }

    80% {
        opacity: 0.02;
    }

    100% {
        opacity: 0.02;
    }
}

@keyframes pulse-filament {
    0% {
        opacity: 0.15;
        stroke: #475569;
        filter: drop-shadow(0 0 0px rgba(255, 183, 3, 0));
    }

    15% {
        opacity: 0.15;
        stroke: #475569;
    }

    20% {
        opacity: 0.8;
        stroke: #ffb703;
        filter: drop-shadow(0 0 4px #ffb703);
    }

    25% {
        opacity: 0.2;
        stroke: #475569;
    }

    30% {
        opacity: 1;
        stroke: #ffb703;
        filter: drop-shadow(0 0 8px #ffb703) drop-shadow(0 0 18px #ffb703);
    }

    75% {
        opacity: 1;
        stroke: #ffb703;
    }

    80% {
        opacity: 0.15;
        stroke: #475569;
        filter: drop-shadow(0 0 0px rgba(255, 183, 3, 0));
    }

    100% {
        opacity: 0.15;
        stroke: #475569;
    }
}

@keyframes pulse-aura {
    0% {
        opacity: 0;
        transform: scale(0.85);
        transform-origin: 380px 250px;
    }

    15% {
        opacity: 0;
        transform: scale(0.85);
        transform-origin: 380px 250px;
    }

    20% {
        opacity: 0.3;
        transform: scale(0.95);
        transform-origin: 380px 250px;
    }

    25% {
        opacity: 0;
        transform: scale(0.85);
        transform-origin: 380px 250px;
    }

    30% {
        opacity: 0.75;
        transform: scale(1.08);
        transform-origin: 380px 250px;
    }

    75% {
        opacity: 0.75;
        transform: scale(1.08);
        transform-origin: 380px 250px;
    }

    80% {
        opacity: 0;
        transform: scale(0.85);
        transform-origin: 380px 250px;
    }

    100% {
        opacity: 0;
        transform: scale(0.85);
        transform-origin: 380px 250px;
    }
}


.spark-particle {
    animation: spark-float 4s ease-in-out infinite alternate;
}

@keyframes spark-float {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0.9;
    }
}


.floating-symbol {
    animation: symbol-bob 5s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes symbol-bob {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(6deg);
    }
}

@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .content-block {
        order: 1;
        position: relative;
        z-index: 3;
    }

    .visual-section {
        position: absolute;
        right: -325px;
        top: 55%;
        transform: translateY(-50%);
        width: 864px;
        height: 550px;
        z-index: 1;
        opacity: 0.15;
        pointer-events: none;
        order: 2;
    }

    .action-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .main-headline {
        font-size: 2.8rem;
    }

    .description-text {
        font-size: 18px;
    }

    .hero-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }

    .description-text {
        margin: 0 auto 32px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.9rem;
    }

    .description-text {
        font-size: 15px;
    }

    .primary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}






.success_stories {
    background-color: #fbfbfb;
    padding: 60px 20px;
}

.startup-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    flex: 1 1 480px;
    transition: box-shadow 0.3s, transform 0.3s;
    font-family: 'Segoe UI', sans-serif;
    max-width: 420px;
    line-height: 1.4;
}

.startup-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-4px) scale(1.02);
}

.startup-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 9999px;
    padding: 4px 10px;
    margin-right: 6px;
    margin-bottom: 8px;
}

.startup-desc {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    max-width: 90%;
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.stat_logos {
    display: flex;
    gap: 10px;
}

.sgd-goal {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stat {
    text-align: center;
    min-width: 80px;
    flex: 1;
}

.value {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.green {
    color: #10b981;
}

.red {
    color: #ef4444;
}

.yellow {
    color: #f59e0b;
}

.label {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}


.founders_say {
    background-color: #ffffff;
    padding: 60px 20px;
}

.testimonial-card {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    flex: 1 1 480px;
    max-width: 400px;
    position: relative;
    color: #1f2937;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-4px) scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.info {
    flex-grow: 1;
    margin-left: 12px;
}

.name {
    font-weight: 600;
    font-size: 15px;
}

.title {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.company {
    font-size: 13px;
    color: #ef4444;
    font-weight: 500;
    margin-top: 2px;
}

.quote {
    font-size: 28px;
    color: #fca5a5;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-top: 8px;
}


.upcomming_events {
    background-color: #f5f5f5;
}

.card-grid {
    display: grid;
    max-width: 1300px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
}

.event-card {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.event-card.special {
    background-color: #fef5f4;
    border: 1px solid #f9b1b1;
}

.event-card:hover {
    transform: translateY(-4px);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag.competition {
    background-color: #f97316;
    color: white;
}

.tag.featured {
    background-color: #fef3c7;
    color: #d97706;
    border: 1px solid #fcd34d;
}

.event-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
}

.event-details {
    font-size: 14px;
    color: #374151;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.register-btn {
    background: linear-gradient(to right, #f97316, #ef4444);
    color: white;
    font-weight: 600;
    font-size: 14px;
    width: 90%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.register-btn:hover {
    opacity: 0.9;
}

.calendar-icon {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 20px;
    padding: 8px 10px;
    text-decoration: none;
    color: black;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.calendar-icon:hover {
    background-color: #f3f4f6;
}

@media screen and (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .register-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-card {
        padding: 20px;
    }
}


.trusted_partners {
    background-color: #fbfbfb;
    padding: 60px 20px;
    text-align: center;
}

.partner_container {
    max-width: 1400px;
    margin: 0 auto;
}

.vc-card {
    background: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    width: 250px;
    text-align: center;
    text-decoration: none;
}

.vc-icon {
    font-size: 40px;
}


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 14px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background-color: #f9fafb;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.info-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.phone-icon {
    background-color: #fffbeb;
    color: #f59e0b;
}

.email-icon {
    background-color: #fef2f2;
    color: #ef4444;
}

.info-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 14px;
}

.info-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.office-hours {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.hours-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.hours-day {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.hours-time {
    color: #6b7280;
    font-size: 14px;
}

.closed {
    color: #ef4444;
    font-weight: 500;
}

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

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-card,
    .office-hours {
        padding: 24px;
    }
}


.about-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: white;
}

.about-container,
.flx-container {
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    max-width: 100%;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-description {
    text-align: justify;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: #ff6b35;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.flx.flx-container {
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 20px 0;
}

.vision-container,
.mission-container {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
    padding: 32px 28px;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid #f1f1f1;
}

.vision-container {
    border-left: 6px solid #ff6b35;
}

.mission-container {
    border-left: 6px solid #2c3e50;
}

.mv-list {
    margin: 0;
    padding-left: 18px;
    color: #444;
}

.mv-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.vision-description {
    font-size: 1.08rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .flx.flx-container {
        flex-direction: column;
        align-items: stretch;
    }

    .vision-container,
    .mission-container {
        max-width: 100%;
        margin-bottom: 24px;
    }
}


.team-section {
    padding: 4rem 1rem;
}

.team_container {
    max-width: 1400px;
    margin: 0 auto;
}

.our-team {
    background: #fff;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.our-team:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.pic {
    display: inline-block;
    width: 250px;
    height: 250px;
    position: relative;
    z-index: 1;
}

.pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.our-team:hover .pic img {
    filter: brightness(1.05) contrast(1.05);
}

.our-team .title {
    font-size: 20px;
    font-weight: 600;
    color: #ff6b35;
    margin-top: 15px;
    margin-bottom: 0rem;
}

.our-team .post {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.social {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    background: transparent;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social li a:hover {
    background: #ff6b35;
    color: white;
}


.gallery {
    padding: 4rem 2rem;
}

.flx-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
}

.img-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    background: #f8f9fa;
}

.img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.4), rgba(247, 147, 30, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.img-container:hover::before {
    opacity: 1;
}

.img-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.img-container:hover img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;
}

.img-container:hover .img-overlay {
    transform: translateY(0);
}

.img-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.img-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .flx-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .img-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 2rem 1rem;
    }

    .flx-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .img-container {
        height: 200px;
    }
}


.portfolio {
    padding-top: 120px;
    padding-bottom: 80px;
}

.register-container {
    padding-top: 130px;
    padding-bottom: 80px;
}

.portfolio-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 24px;
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    transform: translateY(-4px) scale(1.02);
}

.portfolio-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.portfolio-title {
    color: #ff6b35;
    font-size: 22px;
    font-weight: 600;
}

.portfolio-content {
    text-align: left;
    flex: 1;
}

.portfolio-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .portfolio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .portfolio-logo {
        width: 150px;
        height: 150px;
    }
}


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

.form-header h1 {
    font-size: 2.5rem;
    color: #fc5833;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.registration-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.form-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.form-section {
    padding: 48px 40px;
}

.personal-section {
    background: #ffffff;
    border-right: 1px solid #e9ecef;
}

.company-section {
    background: #fafbfc;
}

.section-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #fc5833;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 4px;
}

.section-header p {
    color: #6c757d;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.required {
    color: #dc3545;
    font-size: 0.8rem;
}

.char-count {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: right;
    margin-top: 4px;
}

.submit-section {
    background: #f8f9fa;
    padding: 32px 40px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.form-note {
    margin-top: 16px;
    color: #6c757d;
    font-size: 0.9rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.form-input.invalid,
.form-textarea.invalid,
select.invalid {
    border-color: #dc3545;
}

.form-input.valid,
.form-textarea.valid,
select.valid {
    border-color: #28a745;
}

@media (max-width: 992px) {
    .form-sections {
        grid-template-columns: 1fr;
    }

    .personal-section {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .company-section {
        background: #ffffff;
    }

    .form-section {
        padding: 32px 24px;
    }
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    font-family: inherit;
    max-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}


.footer {
    background-color: #2d2d2d;
    color: #ffffff;
}

.footer-main {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 14px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #555;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #404040;
    border-color: #666;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-column h3,
.footer-brand h3 {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.footer-column h3::after,
.footer-brand h3::after {
    content: "";
    display: block;
    width: 70%;
    height: 3px;
    background: #e0e0e0;
    position: absolute;
    margin-top: 30px;
    left: 0;
    bottom: 0;
}

.footer-column h3::before,
.footer-brand h3::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ff6b35;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background-color: #1f1f1f;
    padding: 24px 40px;
    border-top: 1px solid #404040;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-bottom {
        padding: 20px 30px;
    }
}

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

    .footer-main {
        padding: 40px 20px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 20px;
    }
}

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

    .footer-main {
        padding: 32px 16px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .social-icons {
        justify-content: flex-start;
    }
}




.why-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}


.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 0 0 1rem 1rem;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::after {
    transform: scaleX(1);
}


.why-card-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: translateY(-6px) scale(1.15);
    background-color: #ff6b35;
    border-color: #ff6b35;
}


.why-card-icon i {
    transition: color 0.3s ease;
}

.why-card:hover .why-card-icon i {
    color: #ffffff;
}


@keyframes why-icon-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.45);
    }

    65% {
        box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.why-card:hover .why-card-icon {
    animation: why-icon-ring 1.4s ease-out 0.15s infinite;
}