/* ===== Hero Banner – Light Theme, No Images ===== */

.hero-banner {
    background: linear-gradient(135deg, #f9f7f3, #e8e6e1);
    height: 280px; /* reduced height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated radial overlay – soft neutral */
.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(210, 180, 140, 0.2), transparent 70%);
    animation: slowDrift 20s infinite alternate ease-in-out;
    pointer-events: none;
}

/* Subtle pattern overlay – diagonal lines, light */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #2c2b28;
    animation: fadeUp 1s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    opacity: 0;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    letter-spacing: -0.5px;
}

.hero-content h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #b87c4f, #d99e6b);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.hero-content h1:hover::after {
    width: 120px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    opacity: 0.85;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-box {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.breadcrumb-box a {
    color: #2c2b28;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.2s;
}

.breadcrumb-box a:hover {
    opacity: 1;
    text-decoration: underline;
    color: #b87c4f;
}

.breadcrumb-box span {
    margin: 0 6px;
    opacity: 0.6;
}

/* Animation keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowDrift {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    100% {
        transform: translate(5%, 5%) rotate(3deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        height: 260px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 240px;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .breadcrumb-box {
        font-size: 12px;
        padding: 4px 16px;
    }
}
.contact-map-section {
    width: 100%;
    height: 350px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-map-section {
        height: 300px;
    }
}
/* ===== Careers Section – Card Styles + Custom Marquee ===== */

/* Section container */
.careers-section {
    background: #fefcf8;
    padding: 3rem 1rem;
}

/* Section title – matches other pages */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3b2c;
    text-align: center;
    position: relative;
    margin-bottom: 2.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a44, #ff7a1a);
    margin: 12px auto 0;
    border-radius: 4px;
}
/* ===== Careers Section – Complete & Polished ===== */

/* Section container */
.careers-section {
    background: #fefcf8;
    padding: 3rem 1rem;
}

/* Section title – with orange underline */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3b2c;
    text-align: center;
    position: relative;
    margin-bottom: 2.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a44, #ff7a1a);
    margin: 12px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(255, 122, 26, 0.2);
}

/* Career Card */
.career-card {
    width: 360px;
    min-height: 380px;
    background: #ffffff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    border: 1px solid #ece6db;
}
.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: #ffd9b5;
}

/* Job title */
.job-title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.35rem;
    color: #2c4a2c;
    border-left: 4px solid #ff7a1a;
    padding-left: 12px;
}

/* Meta info */
.career-meta {
    font-size: 0.85rem;
    color: #7c6b58;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}
.career-meta i {
    color: #ff7a1a;
    margin-right: 4px;
}

/* Short description */
.job-short {
    font-weight: 600;
    color: #2c4a2c;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Full description */
.job-desc {
    font-size: 0.9rem;
    color: #4a5a4a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Apply button – orange gradient */
.apply-btn {
    background: linear-gradient(135deg, #ff9a44, #ff7a1a);
    border: none;
    color: #fff;
    border-radius: 40px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.25s ease;
    margin-top: auto;
    width: 100%;
    text-align: center;
}
.apply-btn:hover {
    background: linear-gradient(135deg, #ff882a, #ff6a00);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 106, 0, 0.3);
}

/* ===== Custom Marquee Animation ===== */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.marquee-track {
    display: flex;
    gap: 25px;
    width: fit-content;
    flex-wrap: nowrap;
    animation: scrollLeft 20s linear infinite;
}
.marquee-track .d-flex {
    flex-wrap: nowrap;
    gap: 25px;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 992px) {
    .career-card {
        width: 320px;
        min-height: 360px;
        padding: 20px;
    }
    .job-title {
        font-size: 1.25rem;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .career-card {
        width: 280px;
        min-height: 340px;
        padding: 18px;
    }
    .career-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .job-title {
        font-size: 1.2rem;
    }
    .apply-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    .career-card {
        width: 260px;
        min-height: 320px;
        padding: 15px;
    }
    .job-title {
        font-size: 1.1rem;
    }
    .career-meta {
        font-size: 0.75rem;
    }
    .job-short {
        font-size: 0.85rem;
    }
    .job-desc {
        font-size: 0.8rem;
    }
}
/* ===== Why Us Section – Premium Uniform Design ===== */

.why-us {
    background: linear-gradient(145deg, #fefcf8, #fdfaf5);
    padding: 80px 0;
    position: relative;
}

/* Optional section title (if you have it) */
.why-us .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3b2c;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}
.why-us .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a44, #ff7a1a);
    margin: 12px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(255, 122, 26, 0.2);
}

/* Cards – modern card with layered shadow */
.why-us .card {
    background: #ffffff;
    border: none;
    border-radius: 28px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.06), 0 4px 8px -4px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow */
.why-us .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

/* Decorative top line (appears on hover) */
.why-us .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff9a44, #ff7a1a, #ff9a44, transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover effect – lift + stronger shadow + top line */
.why-us .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15), 0 8px 12px -6px rgba(0, 0, 0, 0.05);
}
.why-us .card:hover::after {
    opacity: 1;
}

/* Icon – with subtle background */
.why-us .card i {
    font-size: 2.8rem;
    color: #ff7a1a;
    margin-bottom: 1.2rem;
    transition: all 0.25s;
    display: inline-block;
    background: #fff5e8;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.why-us .card:hover i {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff9a44, #ff7a1a);
    color: white;
    box-shadow: 0 12px 20px -8px rgba(255, 122, 26, 0.3);
}

/* Title */
.why-us .card h5 {
    font-weight: 700;
    font-size: 1.4rem;
    color: #2c4a2c;
    margin-bottom: 0.75rem;
}

/* Description */
.why-us .card p {
    font-size: 0.95rem;
    color: #5f6a5e;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us .card {
        padding: 28px 18px;
    }
    .why-us .card i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2.2rem;
    }
    .why-us .card h5 {
        font-size: 1.25rem;
    }
    .why-us .card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    .why-us .card {
        padding: 24px 15px;
    }
    .why-us .card i {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .why-us .card h5 {
        font-size: 1.2rem;
    }
    .why-us .card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-us .card {
        padding: 20px 12px;
    }
    .why-us .card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }
    .why-us .card h5 {
        font-size: 1.1rem;
    }
}

.modal-dialog{
margin-top:120px;
}