:root {
    --primary-color: #0066cc;
    --secondary-color: #f0f0f0;
    --dark-color: #1c1c1c;
    --light-color: #ffffff;
    --header-bg: #f5f5f5;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo img {
    height: 40px;
}

.nav-links-container {
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease; /* Add transition for smooth animation */
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* Hero Section - Updated to match the image */
.hero {
    background-color: #132C55;
    padding: 100px 0 0 0;
    position: relative;
    overflow: visible;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
    text-align: left;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 500px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center logo and tagline */
    text-align: center;
}

.hero-logo {
    margin-top: 80px;
    margin-bottom: 30px;
    max-width: 300px;
}

.hero-tagline {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.hero-tagline strong {
    font-weight: 700;
}

.hero-right {
    flex: 1;
    background-color: #6f87fb;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}

.hero-office-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    gap: 50px;
}

.stats-card {
    background-color: var(--header-bg);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    min-width: 250px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stats-text {
    font-size: 0.7rem;
    color: #666;
    max-width: 200px;
}

/* Workshop Section */
.workshop {
    padding: 100px 0;
    background-color: var(--header-bg);
}

.workshop-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.workshop-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
    line-height: 1.2;
}

.workshop-text {
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    margin-bottom: 50px;
}

.workshop-text p {
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 40px 0;
    background-color: var(--light-color);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.about-content {
    flex: 1;
}

.about-logos {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about-logos img {
    max-width: 200px;
    height: auto;
}

.incubated-text {
    font-size: 0.9rem;
    color: #666;
    margin: -15px 0 -15px 0;
    font-weight: 500;
}

.section-title {
    text-align: left;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Services Section */
.services {
    padding: 40px 0;
    background-color: var(--header-bg);
}

/* Logos shown above services (from attachments) */
.services-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.services-logos img {
    display: block;
    height: auto;
    max-height: 80px;
}

.services-logos .logo-small {
    max-height: 54px; /* smaller Assam Startup logo */
}

.services-logos .logo-large {
    max-height: 80px; /* larger Stipends Connect logo */
}

@media (max-width: 768px) {
    .services-logos {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .services-logos img {
        max-height: 60px;
        width: auto;
    }
}

/* Rounded borders for logos and hero image */
.services-logos img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    background-color: white;
}

.partner-logo img {
    border-radius: 8px;
}

.hero-image img {
    border-radius: 12px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Internship Network Section */
.internship-network {
    padding: 40px 0;
    background-color: var(--light-color);
}

.network-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.network-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.2;
}

.network-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.network-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.network-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.qr-code {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 150px;
    height: 150px;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: var(--header-bg);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.testimonial-cards {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 5rem;
    color: #f0f0f0;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Partners Section */
.partners {
    padding: 40px 0;
    background-color: var(--light-color);
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.partners-marquee {
    display: block;
    overflow: hidden;
}

.partners-container {
    display: inline-flex;
    gap: 40px;
    width: auto;
    margin: 0 auto;
    align-items: center;
    padding: 10px 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
    flex: 0 0 auto; /* prevent shrinking */
}

.partner-logo img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* hide horizontal scrollbar for webkit */
.partners-container::-webkit-scrollbar {
    height: 8px;
}
.partners-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 24px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a{
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.social-links a:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--header-bg);
    color: black;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-split {
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .workshop-title {
        font-size: 2.2rem;
    }

    .workshop-text {
        font-size: 1.3rem;
    }

    .network-title {
        font-size: 2.2rem;
    }

    .network-subtitle {
        font-size: 1.3rem;
    }

    .network-description {
        font-size: 1.1rem;
    }

    .partners-title {
        font-size: 2rem;
    }

    .partners-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .mobile-menu {
        display: block;
    }

    .nav-links-container {
        display: none; /* Hide nav links */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 1001; /* Ensure it's above other elements */
    }

    .nav-links {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-split {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-content {
        flex: 1 1 45%;
        min-width: 200px;
    }

    .hero-image {
        flex: 1 1 45%;
        min-width: 200px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        flex-basis: 100%;
    }

    .hero-buttons .btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        max-width: 200px;
    }

    .workshop-title {
        font-size: 1.8rem;
    }

    .workshop-text {
        font-size: 1.1rem;
    }

    .network-title {
        font-size: 1.8rem;
    }

    .network-subtitle {
        font-size: 1.1rem;
    }

    .network-description {
        font-size: 1rem;
    }

    .network-buttons {
        flex-direction: column;
    }

    .partners-title {
        font-size: 1.8rem;
    }

    .partners-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .about-split {
        flex-direction: column;
        gap: 30px;
    }

    .about-logos {
        flex: 1;
        flex-direction: row;
        gap: 20px;
    }

    .about-logos img {
        max-width: 120px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-card {
        padding: 0;
    }
}

/* Icons replacement (since we're not using an icon library) */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
