/* General Styles */
:root {
    --primary-color: #8A9EA0;
    --secondary-color: #FFBB40;
    --text-color: #897C70;
    --light-gray: #FFFAF0;
    --dark-gray: #897C70;
    --white: #fff;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header and Navigation */
#header_outer {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#header_outer.fixed {
    padding: 15px 0;
    background: var(--white);
}

.header_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.logo {
    z-index: 1000;
}

.logo img {
    max-height: 50px;
    display: block;
}

/* Navigation Styles */
.nav {
    position: relative;
    background: var(--white);
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 1em;
    margin: 0;
    padding: 0;
    align-items: center;
    background: var(--white);
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-color);
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.res-nav_click {
    display: none;
    background: none;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-nav_click i {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.res-nav_click.active i {
    transform: rotate(90deg);
}

/* Large Screens */
@media (min-width: 992px) {
    .main-nav {
        display: flex !important;
    }
    
    .res-nav_click {
        display: none !important;
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 991px) {
    #header_outer {
        padding: 0;
    }

    .header_section {
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 10px 0;
    }

    .logo {
        display: none;
    }

    .res-nav_click {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav {
        position: static;
        width: 100%;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        margin-top: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-nav.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 1rem;
        border-radius: 4px;
        width: 100%;
    }

    .main-nav a:hover {
        background: var(--light-gray);
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav li {
        width: 100%;
    }
}

/* Small Mobile Styles */
@media (max-width: 767px) {
    .header_section {
        min-height: 50px;
    }

    .res-nav_click {
        width: 40px;
        height: 40px;
    }

    .res-nav_click i {
        font-size: 1.3rem;
    }

    .main-nav a {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 480px) {
    .header_section {
        min-height: 45px;
    }

    .res-nav_click {
        width: 35px;
        height: 35px;
        right: 10px;
    }

    .res-nav_click i {
        font-size: 1.2rem;
    }

    .main-nav {
        padding: 0.5rem;
    }

    .main-nav a {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
}

/* Top Content Section */
.top_cont_outer {
    background: url('../img/bannerimage.png') no-repeat center;
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.top_cont_outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.top_cont_inner {
    position: relative;
    z-index: 1;
    color: var(--white);
    width: 100%;
}

.top_left_cont {
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.top_left_cont h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter 1.5s steps(20, end) forwards;
    animation-delay: 1s;
}

.top_left_cont h3::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--secondary-color);
    opacity: 1;
    animation: 
        blink 0.7s steps(1) infinite,
        hideCursor 0.1s ease forwards;
    animation-delay: 1s, 2.6s;
}

.top_left_cont h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 2s;
}

.top_left_cont p {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 2.3s;
}

.learn_more2 {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 6px;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 2.6s;
    position: relative;
    overflow: hidden;
}

.learn_more2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    background: rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
}

.learn_more2:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 187, 64, 0.2);
}

.learn_more2:hover::before {
    height: 450%;
}

/* Capabilities Section */
#capabilities {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

#capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    color: var(--text-color);
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header .section-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
}

.service_area {
    padding: 20px 0;
    width: 100%;
}

.service_area .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.service_area .row:last-child {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 800px;
}

.service_block {
    background: var(--white);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 12px;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(137, 124, 112, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    border: 1px solid rgba(137, 124, 112, 0.1);
}

.service_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(137, 124, 112, 0.1);
}

.service_block:hover::before {
    transform: scaleX(1);
}

.service_icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.service_icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service_block:hover .service_icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.service_block:hover .service_icon::after {
    transform: scale(1.2);
    opacity: 0;
}

.service_icon i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service_block:hover .service_icon i {
    color: var(--text-color);
    opacity: 1;
}

.service_block h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.service-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service_block:hover .service-list li::before {
    transform: translateX(5px);
}

/* Experience Section */
#experience {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--text-color), transparent);
    opacity: 0.1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-item {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(137, 124, 112, 0.1);
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(137, 124, 112, 0.12);
}

.experience-item:hover::before {
    transform: scaleY(1);
}

.experience-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(137, 124, 112, 0.1);
}

.experience-item:hover .experience-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
    border-color: var(--secondary-color);
}

.experience-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.experience-item:hover .experience-icon i {
    color: var(--white);
}

.experience-stats {
    flex-grow: 1;
}

.experience-stats h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-detail {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
}

/* Services Section */
#services {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(138, 158, 160, 0.08) 0%, rgba(255, 250, 240, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(138, 158, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 187, 64, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.services-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(137, 124, 112, 0.06);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(137, 124, 112, 0.1);
}

.service-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 187, 64, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-locations {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(138, 158, 160, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.service-item:hover .location-tag {
    background: var(--secondary-color);
    color: var(--white);
}

/* Contact Section */
.footer_section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
}

.contact_section {
    margin-bottom: 60px;
}

.contact_section h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact_block {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact_block:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact_block_icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact_block_icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_block_icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact_block span {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact_block a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_block a:hover {
    color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.career-button {
    text-align: center;
}

.career-button .input-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.career-button .input-btn:hover {
    background: #E5A93A;
    transform: translateY(-2px);
}

.form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

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

.input-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-btn:hover {
    background: #E5A93A;
    transform: translateY(-2px);
}

#sendmessage, #errormessage {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

#sendmessage {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #98ffb1;
}

#errormessage {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ffb3b9;
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer_section {
        padding: 80px 0 40px;
    }

    .contact_section h2 {
        margin-bottom: 2.5rem;
    }

    .contact_block {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .footer_section {
        padding: 60px 0 30px;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact_block_icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .contact_block_icon i {
        font-size: 1.25rem;
    }

    .contact_block span {
        font-size: 1rem;
    }

    .form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer_section {
        padding: 40px 0 20px;
    }

    .contact_section h2 {
        margin-bottom: 2rem;
    }

    .contact-grid {
        gap: 1rem;
    }

    .contact_block {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form {
        padding: 1.25rem;
    }

    .input-btn {
        padding: 0.875rem;
    }
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        min-height: 300px;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Responsive adjustments for capabilities section */
@media (max-width: 991px) {
    #capabilities {
        padding: 80px 0;
    }

    .service_area {
        padding: 10px 0;
    }

    .service_area .row,
    .service_area .row:last-child {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 767px) {
    #capabilities {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .service_block {
        padding: 1.5rem;
    }

    .service_icon {
        margin-bottom: 1.5rem;
    }

    .service-list li {
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    #capabilities {
        padding: 40px 0;
    }

    .service_area .row,
    .service_area .row:last-child {
        gap: 1rem;
    }

    .service_block {
        padding: 1.25rem;
    }

    .service_block h3 {
        margin-bottom: 1rem;
    }

    .service-list li {
        padding-left: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.careers-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 1rem;
}

.careers-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(137, 124, 112, 0.08);
}

.careers-info h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.careers-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(137, 124, 112, 0.1);
}

.benefits-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(137, 124, 112, 0.1);
    border-color: var(--secondary-color);
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(137, 124, 112, 0.08);
    transition: all 0.3s ease;
}

.benefits-list li:hover i {
    transform: scale(1.1);
    color: var(--white);
    background: var(--secondary-color);
}

.benefits-list h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefits-list p {
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

/* Career Form Styles */
.careers-form {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(137, 124, 112, 0.08);
}

.careers-form h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.career-application-form .form-group {
    margin-bottom: 1.5rem;
}

.career-application-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.career-application-form .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(137, 124, 112, 0.2);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.career-application-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 187, 64, 0.1);
}

.career-application-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23897C70' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.career-application-form input[type="file"] {
    padding: 0.6rem;
}

.career-application-form .submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-application-form .submit-btn:hover {
    background: #E5A93A;
    transform: translateY(-2px);
}

.career-application-form .submit-btn i {
    font-size: 1.2rem;
}

/* Benefits List Styles */
@media (max-width: 768px) {
    .benefits-list li {
        padding: 1.25rem;
        gap: 1rem;
    }

    .benefits-list i {
        font-size: 1.25rem;
        padding: 0.8rem;
    }

    .benefits-list h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .benefits-list li {
        padding: 1rem;
    }

    .benefits-list i {
        font-size: 1.1rem;
        padding: 0.7rem;
    }

    .benefits-list h4 {
        font-size: 1rem;
    }

    .benefits-list p {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .careers-content {
        margin-top: 0.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .careers-section {
        padding: 60px 0;
    }
    
    .careers-content {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .careers-section {
        padding: 40px 0;
    }
    
    .careers-info,
    .careers-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-section {
        padding: 30px 0;
    }
}

/* Hero Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes hideCursor {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive adjustments for hero animations */
@media (max-width: 768px) {
    .top_left_cont h3 {
        font-size: 2rem;
        white-space: normal;
        border-right: none;
        animation: fadeInUp 0.8s ease-out forwards;
        animation-delay: 1s;
        width: auto;
    }
}

@media (max-width: 480px) {
    .top_left_cont h3 {
        font-size: 1.8rem;
    }
    
    .top_left_cont h2 {
        font-size: 1.5rem;
    }
    
    .top_left_cont p {
        font-size: 1.1rem;
    }
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    margin-right: 0.5rem;
} 