* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pamphlet-header .subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.breadcrumb {
    position: relative;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 8px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Career Content Styles */

.section {
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section.reverse {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
    min-width: 300px;
}

.section-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

.section-title {
    text-align: left;
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 10px;
    position: relative;
}

.section-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Unique Section Styles */
.unique-section {
    padding: 30px;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.unique-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.unique-title {
    text-align: center;
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.unique-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1a237e, #e53935);
    border-radius: 2px;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.unique-item {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.6s ease forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unique-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(26, 35, 126, 0.1);
    border-color: #1a237e;
}

.unique-icon {
    font-size: 36px;
    color: #1a237e;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: rgba(26, 35, 126, 0.1);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.unique-item:hover .unique-icon {
    background: #1a237e;
    color: white;
    transform: scale(1.1);
}

.unique-item-title {
    font-size: 18px;
    color: #1a237e;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-item-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Grow Section Styles */
.grow-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 15px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.grow-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.grow-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,133.3C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.grow-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.grow-title {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.grow-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #e53935;
    border-radius: 2px;
}

.grow-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

.grow-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.grow-highlight:hover {
    transform: translateY(-5px);
}

.grow-highlight-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.grow-highlight-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    padding: 20px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.benefits-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-title {
    text-align: center;
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #1a237e;
}

.benefit-icon {
    font-size: 40px;
    color: #1a237e;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-title {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 15px;
}

.benefit-text {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 40px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-form.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-title {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

textarea {
    height: 150px;
    resize: vertical;
    font-family: inherit;
}

/* File Input Styling */
.file-input-container {
    position: relative;
    margin-top: 5px;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s;
}

.file-input-label:hover {
    background-color: #e9ecef;
    border-color: #1a237e;
}

.file-input-text {
    color: #666;
    font-size: 14px;
}

.file-input-icon {
    color: #1a237e;
}

input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Selected file name display */
.file-name {
    margin-top: 5px;
    font-size: 14px;
    color: #1a237e;
    font-style: italic;
    min-height: 20px;
}

.submit-btn {
    background: linear-gradient(to right, #1a237e, #e53935);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: block;
    margin: 30px auto 0;
    width: 250px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
    background: linear-gradient(to right, #283593, #f44336);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn:disabled:hover::before {
    left: -100%;
}

/* Form validation styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e53935;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
}

.error-message {
    color: #e53935;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Success message styling */
.success-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 24px;
}

.success-message p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.close-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #1a237e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn:hover {
    background: #283593;
}

/* HR Contact Section */
.hr-contact {
    background: white;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hr-contact.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hr-icon {
    font-size: 48px;
    color: #1a237e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hr-title {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(26, 35, 126, 0.05);
    padding: 25px;
    border-radius: 10px;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(26, 35, 126, 0.1);
}

.contact-item i {
    font-size: 32px;
    color: #1a237e;
    background: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details h4 {
    color: #1a237e;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-details a.email-link {
    font-size: 18px;
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact-details a.email-link:hover {
    color: #1a237e;
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.location-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.hr-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: #1a237e;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pamphlet-header h1 {
        font-size: 36px;
    }

    .pamphlet-header .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-text {
        font-size: 16px;
    }

    .unique-section,
    .grow-section,
    .contact-form,
    .hr-contact {
        padding: 30px 20px;
    }

    .section-image {
        height: 300px;
    }

    .unique-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        min-width: 100%;
    }

    .grow-title {
        font-size: 28px;
    }

    .grow-text,
    .grow-highlight-text {
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row .form-group {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .unique-item {
        padding: 20px 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}