﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
/* Header and Breadcrumbs */
/*.top_panel_title_wrap {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}*/

.content_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top_panel_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.breadcrumbs {
    display: flex;
    align-items: center;
}

.breadcrumbs_item {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
}

    .breadcrumbs_item:hover {
        color: #2a6ebb;
    }

.breadcrumbs_delimiter {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumbs_item.current {
    color: #2a6ebb;
    font-weight: 500;
}

.brochure-download {
    /*background: #2a6ebb;*/
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    margin-left: 20px;
    transition: background 0.3s;
}

    .brochure-download:hover {
        /*background: #1a5aa5;*/
    }

/* Hero Section */
.page-header {
    /*background: linear-gradient(135deg, #1a3a5f 0%, #2a6ebb 100%);*/
    color: black;
    padding: 60px 20px;
    text-align: center;
}

    .page-header h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
        font-weight: 600;
        color: #2a6ebb;
        text-align: justify;
    }

    .page-header p {
        font-size: 1.1em;
        margin: 0 auto;
        line-height: 1.8;
        text-align: justify;
        float: left;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2em;
    color: #2a6ebb !important;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-text h2 {
    color: #2a6ebb;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(42, 110, 187, 0.15);
    }

.benefit-icon {
    color: #2a6ebb;
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.05em;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    background-color: #f8f9fa;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.roadmap-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .roadmap-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.roadmap-number {
    background: #2a6ebb;
    color: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2em;
    font-weight: bold;
}

.roadmap-card h3 {
    color: #2a6ebb;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.roadmap-card p {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Program Highlights Section */
.highlights-section {
    background-color: white;
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #2a6ebb;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a6ebb 0%, #1a3a5f 100%);
    color: white;
    font-size: 2em;
}

.highlight-card h3 {
    color: #2a6ebb;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.highlight-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

/* International Interns Alert */
.international-alert {
    background: linear-gradient(135deg, #fff9e6 0%, #fff0cc 100%);
    border-left: 5px solid #ffc107;
    padding: 40px;
    border-radius: 12px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

    .international-alert:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffc107" opacity="0.2"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat;
        background-size: contain;
    }

    .international-alert h3 {
        color: #856404;
        font-size: 1.5em;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

        .international-alert h3 i {
            margin-right: 10px;
            font-size: 1.2em;
        }

    .international-alert p {
        color: #856404;
        font-size: 1.05em;
        line-height: 1.7;
        margin-bottom: 15px;
    }

/* Testimonials Carousel */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.carousel-container {
    position: relative;
    max-width: 960px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    background: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .testimonial-card h4 {
        color: #2a6ebb;
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .testimonial-card p {
        font-style: italic;
        font-size: 1em;
        line-height: 1.7;
        color: #555;
    }

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    .carousel-dot.active {
        background: #2a6ebb;
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 110, 187, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

    .carousel-arrow:hover {
        background: #2a6ebb;
    }

    .carousel-arrow.prev {
        left: 15px;
    }

    .carousel-arrow.next {
        right: 15px;
    }

/* FAQ Accordion */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2a6ebb;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: #e9ecef;
    }

    .faq-question i {
        transition: transform 0.3s;
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.program-note {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1em;
    line-height: 1.8;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .two-column,
    .benefits-grid,
    .roadmap-grid,
    .highlights-grid,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .top_panel_title {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumbs {
        margin-top: 10px;
    }

    .section {
        padding: 60px 0;
    }
}
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 20px 0;
}

.partner-logo {
    flex: 0 0 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 150px;
}

    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .partner-logo img {
        max-height: 60px;
        max-width: 180px;
        object-fit: contain;
        margin-bottom: 15px;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .partner-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

.partner-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    text-align: center;
}

.partners-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .partners-arrow:hover {
        background: #007bff;
        color: white;
    }

    .partners-arrow.prev {
        left: 20px;
    }

    .partners-arrow.next {
        right: 20px;
    }

.partners-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .partner-dot.active {
        background: #007bff;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .partner-logo {
        flex: 0 0 calc(50% - 15px);
    }

    .partners-arrow {
        width: 40px;
        height: 40px;
    }

        .partners-arrow.prev {
            left: 10px;
        }

        .partners-arrow.next {
            right: 10px;
        }
}

@media (max-width: 480px) {
    .partner-logo {
        flex: 0 0 100%;
    }

    .partners-section {
        padding: 40px 0;
    }
}


/* Brochure Download Section */
.brochure-download-section {
    margin-top: 30px;
    text-align: center;
}

.brochure-download-btn {
    display: inline-flex;
    align-items: center;
    /*background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);*/
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    border: none;
    gap: 15px;
    min-width: 320px;
    justify-content: space-between;
}

    .brochure-download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        color: white;
        text-decoration: none;
    }

.brochure-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brochure-download-btn:hover .brochure-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.brochure-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.brochure-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.brochure-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.download-arrow {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.brochure-download-btn:hover .download-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-download-btn {
        min-width: 280px;
        padding: 15px 20px;
        gap: 12px;
    }

    .brochure-icon {
        font-size: 2rem;
        padding: 12px;
    }

    .brochure-title {
        font-size: 1.1rem;
    }

    .brochure-subtitle {
        font-size: 0.8rem;
    }

    .download-arrow {
        font-size: 1.3rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .brochure-download-btn {
        flex-direction: column;
        text-align: center;
        min-width: 250px;
        gap: 10px;
    }

    .brochure-content {
        align-items: center;
        text-align: center;
    }
}

/* Application Section */
.application-section {
    background: linear-gradient(135deg, #129cbf 0%, #34495e 100%);
    padding: 80px 0;
    color: white;
}

.application-container {
    max-width: 1200px;
    margin: 0 auto;
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Application Procedure */
.application-procedure .section-title {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.text-orange {
    color: #ff6b35;
}

.procedure-steps {
    display: flex;
    flex-direction: column;
}

.procedure-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon {
    background: #0d9bbe;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

/* Application Form */
.application-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.half {
        grid-column: span 1;
    }

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55627 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    }

    .submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

.spinner-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    display: none;
}

    .form-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .form-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

/* Responsive Design */
@media (max-width: 968px) {
    .application-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .application-procedure .section-title {
        text-align: center;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .application-section {
        padding: 60px 0;
    }

    .application-form-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .procedure-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .application-form-container {
        padding: 25px 20px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }
}