/* Contact Page Styles */

.career-banner-section .career-banner-wrapper .career-banner-bar-1,
.career-banner-section .career-banner-wrapper .career-banner-bar-1,
.career-banner-section .career-banner-wrapper .career-banner-avatar-image{
    display: none;
}

/* Contact Content Section */
.contact-content-section {
    padding: 160px 0 100px;
    background: #ffffff;
    min-height: 50vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Contact Info - Left Side */
.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 42px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-title .highlight {
    color: #f49e0d;
}

.contact-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.contact-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-detail-text h4 {
    font-size: 20px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.05em;
}

.contact-detail-text a {
    font-size: 14px;
    color: #f49e0d;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-text a:hover {
    color: #e08d00;
    text-decoration: underline;
}

/* Social Media */
.social-media h4 {
    font-size: 22px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.social-icon img {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Form - Right Side */
.contact-form-wrapper {
    background: #ffffff;
    padding: 0;
}

.contact-form-wrapper .form-title {
    font-size: 30px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1c1d1f;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-group select {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #999;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #f49e0d;
    box-shadow: 0 0 0 3px rgba(244, 158, 13, 0.1);
}

.contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact-form .btn-submit {
    background: #f49e0d;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
    min-width: 140px;
    box-shadow: 0 5px 50px 0 #F49E0D80;
}

.contact-form .btn-submit:hover {
    background: #e08d00;
    transform: translateY(-2px);
}

/* Form Messages */
.contact-form-wrapper .form-messages {
    margin-top: 16px;
}

.contact-form-wrapper .form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form-wrapper .form-message-success {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Career Banner Section */
.career-banner-section {
    padding: 10px 0;
    overflow: visible;
}

.career-banner-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: relative;
    min-height: 450px;
    overflow: visible;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.career-banner-text {
    flex: 0 0 55%;
    font-family: 'Baloo Chettan 2', cursive;
    color: #1c1d1f;
    text-align: center;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #F5EDD8;
    border-radius: 20px;
}

.career-text-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.career-line-1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.career-line-2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.career-line-3 {
    font-size: 72px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #F49C1E;
    margin-bottom: 0;
}

.career-line-4 {
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.career-line-5 {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #F49C1E;
    margin-bottom: 0;
}

.career-banner-image {
    flex: 0 0 35%;
    position: relative;
    background: #FDC459;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.career-person-img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.career-banner-bar {
    flex: 0 0 40px;
    background: #F49C1E;
    border-radius: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 36px;
    }

    .career-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        min-height: auto;
    }

    .career-banner-text {
        padding: 40px 30px;
        flex: none;
        width: 100%;
        order: 2;
        border-radius: 15px;
    }

    .career-banner-image {
        order: 1;
        flex: none;
        width: 100%;
        height: 280px;
        border-radius: 15px;
    }

    .career-banner-bar {
        display: none;
    }

    .career-person-img {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .career-line-3 {
        font-size: 50px;
    }

    .career-line-5 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper .contact-form {
        width: 87%;
    }
    .contact-content-section {
        padding: 120px 0 60px;
        margin-top: 75px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-desc {
        font-size: 13px; 
    }
    .contact-info {
        width: 89%;
        overflow: hidden;
    }
    
    .contact-form-wrapper .form-title {
        font-size: 26px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon img {
        width: 40px;
        height: 40px;
    }

    /*  */
    .career-banner-section .career-banner-wrapper{
        flex-direction: column-reverse;
    }
    .career-banner-section .career-banner-wrapper .career-banner-image{
        display: none;
    }
    .career-banner-section .career-banner-wrapper .career-banner-bar-1{
        display: block;
        width: 100%;
        height: 228px;
        background-color: #FDC459;
        border-radius: 20px;
    }
    .career-banner-section .career-banner-wrapper .career-banner-bar-2{
        display: block;
        width: 100%;
        height: 143px;
        background-color: #F49C1E;
        border-radius: 20px;
    }
    .career-banner-section .career-banner-wrapper .career-banner-avatar-image{
        display: block;
        position: absolute;
        width: 100%;
        height: 428px;
        top: 67%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        overflow: hidden;
    }
    .career-banner-section .career-banner-wrapper .career-banner-avatar-image img{
        width: 190%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .career-line-1,
    .career-line-2,
    .career-line-4 {
        font-size: 28px;
    }

    .career-line-3 {
        font-size: 60px;
    }

    .career-line-5 {
        font-size: 40px;
    }

    .career-person-img {
        height: 280px;
    }
}

/* Campuses Section */
.campuses-section {
    background: #F5F6F6;
    padding: 60px 0;
}

.campuses-title {
    font-size: 42px;
    font-weight: 500;
    color: #1c1d1f;
    text-align: left;
    margin-bottom: 50px;
}

.campuses-title .highlight {
    color: #f49e0d;
}

.campuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.campus-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.campus-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    padding: 10px 10px 0 10px;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.campus-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

.campus-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.campus-address {
    font-size: 14px;
    color: #1c1d1f;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.campus-phone {
    font-size: 16px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 16px;
}

.btn-call {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #f49e0d;
    border-radius: 8px;
    color: #f49e0d;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.btn-call:hover {
    background: #f49e0d;
    color: #fff;
}

.campus-direction {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #f49e0d;
    text-decoration: underline;
}

.campus-direction:hover {
    text-decoration: underline;
}

/* Campuses Responsive */
@media (max-width: 1024px) {
    .campuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .campuses-section {
        padding: 60px 0;
    }

    .campuses-title {
        font-size: 32px;
        text-align: center;
    }

    .campuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
