/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --max-width: 1200px;
    --spacing: 1rem;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.main-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1002;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-menu-logo {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

/* Hero Section */
.hero {
    background-color: #101828;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    transition: background-position 0.1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 500px;
    height: 500px;
    border-radius: 1rem;
    object-fit: cover;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    color: white;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
    color: white;
    line-height: 1.6;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.hero-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}


.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #101828;
}

.hero .btn-primary {
    background-color: #ee7032;
    color: white;
}

.hero .btn-primary:hover {
    background-color: #d65f28;
    color: white;
}

/* Image Gallery Section */
.image-gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 4 / 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

/* Companies Section */
.companies {
    background-color: var(--bg-light);
}

/* About Companies Section */
.about-companies {
    margin-top: 4rem;
    padding-top: 3rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.company-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Section Gradient */
.about {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(238, 112, 50, 0.03) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(238, 112, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(238, 112, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
}

.about-photo-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.photo-caption {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
    text-align: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 120px;
    align-self: start;
}

.about-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin-bottom: -10px;
    clip-path: inset(0 0 10px 0);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(54, 120, 234, 0.02) 0%, rgba(238, 112, 50, 0.02) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(54, 120, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238, 112, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ee7032, #3678EA);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(238, 112, 50, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ee7032 0%, #d65f28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(238, 112, 50, 0.3);
    position: relative;
}

.service-card:nth-child(even) .service-icon {
    background: linear-gradient(135deg, #3678EA 0%, #2d5fc7 100%);
    box-shadow: 0 4px 12px rgba(54, 120, 234, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(238, 112, 50, 0.4);
}

.service-card:nth-child(even):hover .service-icon {
    box-shadow: 0 8px 20px rgba(54, 120, 234, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.5;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-align: center;
}

.service-card:hover h3 {
    color: #ee7032;
}

.service-card:nth-child(even):hover h3 {
    color: #3678EA;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Timeline */
.timeline-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
    padding-top: 2rem;
}

.timeline-wrapper .section-header {
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: #ee7032 rgba(238, 112, 50, 0.2);
    -webkit-overflow-scrolling: touch;
    scroll-padding: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 3rem;
    height: 3px;
    background: linear-gradient(to right, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032);
    z-index: 0;
    width: calc(100% - 4rem);
    min-width: calc(280px * 21 + 2rem * 20);
}

.timeline-item {
    position: relative;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    max-width: 280px;
    min-width: 280px;
    flex-shrink: 0;
}

.timeline-item:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ee7032;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #ee7032;
    z-index: 2;
}

.timeline-item:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3678EA;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3678EA;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-date {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ee7032;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.timeline-item:nth-child(even) .timeline-date {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #3678EA;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    background-color: white;
    padding: 1.25rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #ee7032;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.timeline-item:nth-child(even) .timeline-content {
    background-color: white;
    padding: 1.25rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #3678EA;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-icon {
    width: 45px;
    height: 45px;
    background: #ee7032;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
}

.timeline-item:nth-child(even) .timeline-icon {
    width: 45px;
    height: 45px;
    background: #3678EA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
}

.timeline-icon i {
    font-size: 1.25rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.timeline-item:nth-child(odd) .timeline-company {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ee7032;
    margin-bottom: 0.75rem;
}

.timeline-item:nth-child(even) .timeline-company {
    font-size: 1.125rem;
    font-weight: 600;
    color: #3678EA;
    margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

/* Mentorship Section */
.mentorship {
    background: linear-gradient(135deg, rgba(54, 120, 234, 0.02) 0%, rgba(238, 112, 50, 0.02) 100%);
    position: relative;
}

.mentorship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(54, 120, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238, 112, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mentorship .container {
    position: relative;
    z-index: 1;
}

.mentorship-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mentorship-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mentorship-section-block {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mentorship-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(238, 112, 50, 0.2);
}

.mentorship-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mentorship-detail-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.mentorship-detail-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.mentorship-investment {
    position: sticky;
    top: 100px;
}

.investment-card {
    background: linear-gradient(135deg, #ee7032 0%, #d65f28 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(238, 112, 50, 0.3);
    color: white;
    text-align: center;
}

.investment-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.investment-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.investment-period {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.investment-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.investment-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-features li:last-child {
    border-bottom: none;
}

.investment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.investment-cta {
    width: 100%;
    background-color: #3678EA;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.investment-cta:hover {
    background-color: #2d5fc7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 120, 234, 0.4);
    color: white;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(54, 120, 234, 0.02) 0%, rgba(238, 112, 50, 0.02) 100%);
    background-image: radial-gradient(circle, rgba(54, 120, 234, 0.05) 1px, transparent 1px), radial-gradient(circle, rgba(238, 112, 50, 0.05) 1px, transparent 1px);
    background-size: 30px 30px, 35px 35px;
    background-position: 0 0, 15px 15px;
    position: relative;
    overflow: hidden;
    transition: background-position 0.1s ease-out;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(54, 120, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(238, 112, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ee7032;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-info-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #ee7032 0%, #d65f28 100%);
}

.contact-info-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #3678EA 0%, #2d5fc7 100%);
}

.contact-info-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #ee7032 0%, #d65f28 100%);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-item:nth-child(2):hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3678EA;
    text-decoration: none;
}

.contact-info-item:nth-child(1) .contact-details a:hover,
.contact-info-item:nth-child(3) .contact-details a:hover {
    color: #ee7032;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3678EA;
    box-shadow: 0 0 0 3px rgba(54, 120, 234, 0.1);
}

.form-group:nth-child(1) input:focus,
.form-group:nth-child(3) textarea:focus {
    border-color: #ee7032;
    box-shadow: 0 0 0 3px rgba(238, 112, 50, 0.1);
}

.btn-primary {
    background-color: #3678EA;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2d5fc7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 120, 234, 0.3);
}

.contact .btn-primary {
    background-color: #ee7032;
}

.contact .btn-primary:hover {
    background-color: #d65f28;
    box-shadow: 0 4px 12px rgba(238, 112, 50, 0.3);
}

/* Footer */
.main-footer {
    background-color: #101828;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    color: white;
    padding: 3rem 0 1rem 0;
    position: relative;
    overflow: hidden;
    transition: background-position 0.1s ease-out;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#footer-image {
    max-width: 100%;
    width: auto;
    max-height: 400px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-info {
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    font-size: 0.875rem;
}

.footer-info p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-name {
    font-weight: 600;
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
}

.footer-email {
    margin-bottom: 1.5rem !important;
}

.footer-logo {
    display: flex;
    align-items: center;
}

/* General Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.footer-copyright-left {
    text-align: left;
}

.footer-copyright-right {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: white;
    margin: 0;
}

.abn-number {
    color: white !important;
    text-decoration: none !important;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer-links {
    font-size: 0.875rem;
    color: white;
    margin-top: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 280px;
        max-width: 80%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        padding: 0 0 2rem 0;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-logo {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .mobile-menu-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-logo img {
        max-height: 60px;
        height: auto;
        width: auto;
        max-width: 200px;
        object-fit: contain;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu li.mobile-menu-logo {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        font-size: 1.125rem;
        color: var(--text-color);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: var(--bg-light);
        color: #ee7032;
        padding-left: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .main-header {
        position: relative;
        z-index: 1002;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Overlay for menu backdrop */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-section {
        order: -1;
    }

    .hero-image {
        width: 500px;
        height: 500px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: thin;
        scrollbar-color: #ee7032 rgba(238, 112, 50, 0.2);
        -webkit-overflow-scrolling: touch;
        scroll-padding: 1rem;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 1rem;
        right: 1rem;
        height: 3px;
        background: linear-gradient(to right, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032, #3678EA, #ee7032);
        z-index: 0;
        width: calc(100% - 2rem);
        min-width: calc(280px * 21 + 0.5rem * 20);
    }

    .timeline-item {
        flex: 1 1 0;
        max-width: none;
        min-width: 0;
        flex-shrink: 1;
    }

    .timeline-item::before {
        top: 2.25rem;
    }

    .timeline-content {
        padding: 1rem 1.25rem;
        max-width: 100%;
    }

    .timeline-content h3 {
        font-size: 1.125rem;
    }

    .timeline-company {
        font-size: 1rem;
    }

    .timeline-content p:last-child {
        font-size: 0.8125rem;
    }

    .timeline-date {
        font-size: 0.875rem;
    }

        @media (max-width: 600px) {
        .companies-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    }

        @media (max-width: 480px) {
        .about-companies {
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        .about-companies .section-header {
            margin-bottom: 2rem;
        }

        .companies-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .company-logo {
            height: 90px;
            padding: 1rem;
        }

        .company-logo img {
            max-height: 50px;
        }

        .timeline {
            padding-left: 1rem;
            padding-right: 1rem;
            gap: 0.5rem;
            scroll-padding: 1rem;
        }

        .timeline::before {
            left: 1rem;
            right: 1rem;
            width: calc(100% - 2rem);
            min-width: calc(240px * 21 + 0.5rem * 20);
        }

        .timeline-item {
            flex: 0 0 240px;
            max-width: 240px;
            min-width: 240px;
        }

        .timeline-content {
            padding: 0.875rem 1rem;
        }

        .timeline-content h3 {
            font-size: 0.9375rem;
        }

        .timeline-company {
            font-size: 0.875rem;
        }

        .timeline-date {
            font-size: 0.8125rem;
        }

        .timeline-icon {
            width: 40px;
            height: 40px;
        }

        .timeline-icon i {
            font-size: 1.125rem;
        }
    }

    .about-content {
        max-width: 100%;
        padding: 0;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        text-align: center;
        width: 100%;
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.7;
    }

    .about-image {
        order: 1;
        position: relative;
        top: auto;
    }
    
    .about-text {
        order: 0;
    }

    .about-companies {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .company-logo {
        height: 100px;
        padding: 1rem;
    }

    .company-logo img {
        max-height: 60px;
    }

    .about-img {
        max-width: 100%;
    }

    .mentorship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mentorship-investment {
        position: relative;
        top: auto;
    }

    .mentorship-section-block {
        padding: 2rem 1.5rem;
    }

    .mentorship-heading {
        font-size: 1.25rem;
    }

    .investment-card {
        padding: 2rem 1.5rem;
    }

    .investment-title {
        font-size: 1.5rem;
    }

    .investment-price {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-details {
        text-align: center;
    }

    .footer-nav {
        gap: 0.75rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav a {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }

    .footer-logo-wrapper {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        position: relative;
        padding: 0 1rem;
    }

    #footer-image {
        max-width: 100%;
        max-height: 150px;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-info {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        text-align: center;
        width: 100%;
        margin-top: 0;
        color: white;
        padding: 0;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-name {
        font-size: 0.9375rem !important;
    }

    .footer-info p {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .footer-email {
        margin-bottom: 1rem !important;
    }

    .footer-copyright {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-copyright-left {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-copyright-right {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-copyright-left p {
        text-align: center !important;
        margin: 0 auto 0.5rem auto !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .footer-copyright-right p {
        text-align: center !important;
        margin: 0 auto !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .footer-copyright-left p:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-copyright-right p:last-child {
        margin-bottom: 0 !important;
    }

    .footer-copyright p {
        font-size: 0.8125rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center !important;
    }
    
    .footer-links {
        font-size: 0.8125rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0 0.25rem;
        text-align: center !important;
    }
    
    .footer-links a:first-child {
        margin-left: 0;
    }
    
    .footer-links a:last-child {
        margin-right: 0;
    }
    
    .footer-link-separator {
        display: inline;
    }
    
    .abn-number {
        color: white !important;
        text-decoration: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Break links on very small screens */
    @media (max-width: 480px) {
        .footer-links {
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
        
        .footer-links a {
            margin: 0;
        }
        
        /* Hide pipe separator on mobile */
        .footer-link-separator {
            display: none;
        }
    }

    .main-footer {
        padding: 2rem 0 1rem 0;
    }

    .logo img {
        max-height: 50px;
        max-width: 200px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}
