/* About Us Page Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('Assests/About Us.png');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

/* About Brand Section Styling */
.about-brand-section {
    width: 100%;
    padding: 0;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('Assests/About Us.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: -80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.about-brand-container {
    background-color: #e2f0ff;
    /* Light blue background from screenshot */
    border-radius: 12px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

/* Left Column: Content */
.about-brand-content {
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    /* Dark grey */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.brand-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    /* Large heading */
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.brand-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    /* Dark text for readability */
    margin-bottom: 20px;
    text-align: justify;
    /* Text looks justified in the screenshot */
}

.brand-text p:last-child {
    margin-bottom: 0;
}

/* Right Column: Image/Logo */
.about-brand-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    max-width: 400px;
    /* Adjust based on actual image size requirement */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Career Section */
.career-section {
    padding: 60px 0 100px;
    background: white;
}

.career-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.career-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: #4285f4;
    /* Primary Blue */
    font-weight: 700;
    margin: 0;
}

.career-arrow-left,
.career-arrow-right {
    height: 2px;
    width: 150px;
    background: #5d6d7e;
    position: relative;
}

.career-arrow-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #5d6d7e;
    border-right: 2px solid #5d6d7e;
    transform: rotate(45deg);
}

.career-arrow-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #5d6d7e;
    border-left: 2px solid #5d6d7e;
    transform: rotate(-45deg);
}

.career-container {
    background-color: #e2f0ff;
    /* Light blue bg */
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 50, 150, 0.05);
    max-width: 1400px;
    /* Ensure container width consistency */
    margin: 0 auto;
    /* Center container */
    width: 90%;
    /* Responsive width */
}

.career-top-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.career-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: #fdfae7;
    /* Light beige/yellowish tint like screenshot */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.career-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.career-objectives h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.career-objectives p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.career-bottom-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Updated Aim Grid Blocks */
.career-aim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.aim-block {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(186, 230, 253, 0.5);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.aim-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(66, 133, 244, 0.1);
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #4285f4;
}

.aim-block p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.career-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5d6d7e;
    font-style: italic;
}

/* Vision Section */
.vision-section {
    padding: 60px 0 100px;
    background: white;
}

.vision-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.vision-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: #4285f4;
    /* Primary Blue */
    font-weight: 700;
    margin: 0;
}

.vision-arrow-left,
.vision-arrow-right {
    height: 2px;
    width: 150px;
    background: #5d6d7e;
    position: relative;
}

.vision-arrow-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #5d6d7e;
    border-right: 2px solid #5d6d7e;
    transform: rotate(45deg);
}

.vision-arrow-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: -5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #5d6d7e;
    border-left: 2px solid #5d6d7e;
    transform: rotate(-45deg);
}

.vision-container {
    background-color: #e2f0ff;
    /* Light blue bg same as Career */
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 50, 150, 0.05);
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Text left, Image right */
    gap: 50px;
    margin-bottom: 40px;
}

.vision-text-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vision-text-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.vision-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.vision-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5d6d7e;
    text-align: left;
}

.vision-footer-text p {
    margin: 0 0 15px 0;
}

/* Technical Expertise & Contact Section */
.expertise-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.expertise-content {
    font-family: 'Inter', sans-serif;
    color: #5d6d7e;
    font-size: 1rem;
    line-height: 1.7;
}

.intro-p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #4a5568;
}

.custom-list {
    list-style: none;
    padding: 30px;
    /* More padding for block feel */
    margin-bottom: 30px;
    background-color: #f8fafc;
    /* Light grey block background */
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    /* Subtle border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    /* Subtle shadow */
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4a5568;
    font-weight: 500;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5266ff;
    /* Primary Blue from main site */
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.outro-p {
    color: #5d6d7e;
}

/* Enhanced Customer Support Form Styles (matching ietm_jss_0251.css) */
.contact-form-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.custom-form-style {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 50, 150, 0.08);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(66, 133, 244, 0.1);
    transition: all 0.3s ease;
    position: sticky;
    top: 100px;
}

.custom-form-style:hover {
    box-shadow: 0 25px 60px rgba(0, 50, 150, 0.12);
    transform: translateY(-2px);
}

.custom-form-style h5 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #2c3e50;
    background: linear-gradient(90deg, #1a237e, #4285f4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-form-style .support-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.custom-form-style input[type="text"],
.custom-form-style input[type="email"],
.custom-form-style input[type="tel"],
.custom-form-style textarea,
.custom-form-style select.form-select {
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.custom-form-style input::placeholder,
.custom-form-style textarea::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.custom-form-style input:focus,
.custom-form-style textarea:focus,
.custom-form-style select.form-select:focus {
    border-color: #4285f4;
    background: white;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
    transform: translateY(-1px);
}

.custom-form-style select.form-select {
    cursor: pointer;
    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='%234285f4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 45px;
}

.custom-form-style select.form-select option {
    background: white;
    color: #2c3e50;
    padding: 10px;
}

.custom-form-style textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.custom-form-style .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #5d6d7e;
    padding: 8px 0;
}

.custom-form-style .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4285f4;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-form-style .checkbox-group input[type="checkbox"]:checked {
    background-color: #4285f4;
    border-color: #4285f4;
}

.custom-form-style .checkbox-group label {
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    transition: color 0.2s ease;
    color: #5d6d7e;
}

.custom-form-style .checkbox-group label:hover {
    color: #4285f4;
}

.custom-form-style .btn-details {
    background: linear-gradient(135deg, #4285f4 0%, #3b71ca 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    width: 100%;
}

.custom-form-style .btn-details::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 ease;
}

.custom-form-style .btn-details:hover::before {
    left: 100%;
}

.custom-form-style .btn-details:hover {
    background: linear-gradient(135deg, #3b71ca 0%, #2c5aa0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.custom-form-style .btn-details:active {
    transform: translateY(-1px);
}

.custom-form-style .btn-details.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    pointer-events: none;
}

.custom-form-style .form-footer-note {
    font-size: 0.8rem;
    color: #4285f4;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 500;
    padding: 15px;
    background: rgba(66, 133, 244, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4285f4;
}

/* Form validation states */
.custom-form-style input:invalid:not(:placeholder-shown),
.custom-form-style textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background: #fef2f2;
}

.custom-form-style input:valid:not(:placeholder-shown),
.custom-form-style textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Responsive form styles */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
    
    .custom-form-style {
        max-width: 100%;
        position: static;
    }
}

@media (max-width: 600px) {
    .custom-form-style {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .custom-form-style h5 {
        font-size: 1.1rem;
    }
    
    .custom-form-style input[type="text"],
    .custom-form-style input[type="email"],
    .custom-form-style input[type="tel"],
    .custom-form-style textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .custom-form-style .btn-details {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .custom-form-style .form-footer-note {
        font-size: 0.75rem;
        padding: 12px;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8fafc;
    /* Light grey background */
    border-radius: 20px;
    /* Matching the container style slightly */
    margin-bottom: 40px;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-heading h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: #1e293b;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #5266ff;
}

.testimonial-quote {
    color: #4a5568;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid #5266ff;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background-color: #e2f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5266ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 0.85rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 992px) {

    .career-top-grid,
    .vision-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .career-arrow-left,
    .career-arrow-right,
    .vision-arrow-left,
    .vision-arrow-right {
        width: 60px;
    }

    .about-brand-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }

    .about-brand-image {
        order: -1;
        margin-bottom: 20px;
    }

    .brand-heading {
        font-size: 2rem;
    }

    .vision-img-wrapper {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .about-brand-section {
        padding: 40px 5%;
        /* Less outer padding on mobile */
    }

    .about-brand-container {
        padding: 30px 20px;
    }

    .brand-heading {
        font-size: 1.75rem;
    }
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.locations-header {
    margin-bottom: 30px;
    text-align: center;
    /* Center align header as requested */
}

.location-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.locations-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #5d6d7e;
}

/* Update grid to be more balanced and centered */
.location-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced split */
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    /* Constrain width for better centering */
    margin: 0 auto;
    /* Center the grid itself */
}

.location-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Keep text left aligned for readability */
    padding-left: 20px;
    /* Add some padding for visual "frame" feeling */
}

.location-text-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.location-address {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 400px;
}

.view-map-link {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    /* Blackish text */
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.view-map-link:hover {
    color: #5266ff;
    border-color: #5266ff;
}

.location-map-col {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    /* Map look - maybe a subtle shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-map-col img,
.location-map-col iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

@media (max-width: 992px) {
    .location-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locations-header h2 {
        font-size: 2.5rem;
    }
}