* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1 {
    font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

p {
    font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #f8f9fa;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: #333;
}

.header.scrolled .bar {
    background-color: #333;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo {
    height: 85px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #B91C1C;
}

.employee-login {
    background-color: #B91C1C;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.employee-login:hover {
    background-color: #991B1B;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section -  */
.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../assect/next back1.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.hero-main-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content-area {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-text-section {
    flex: 0 0 50%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    margin-left: 50px;
    margin-right: -100px;
    z-index: 3;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.company-name-highlight {
    color: #B91C1C;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-read-more-btn {
    background-color: #B91C1C;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-read-more-btn:hover {
    background-color: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image-section {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(15% 0%,
            100% 0%,
            100% 65%,
            95% 70%,
            100% 75%,
            100% 100%,
            0% 100%,
            0% 35%,
            5% 30%,
            0% 25%);
    overflow: hidden;
    /* background: url('../assect/index.jpg'); */
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat; */
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transition: transform 0.1s ease-out;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* display: none; */
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #B91C1C;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    /* background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
    transition: opacity 0.3s ease;
    /* border-radius: 15px; */
}

/* Individual background images for each service */
.service-card:nth-child(1)::before {
    background-image: url('../assect/HRM.jpg');
}

.service-card:nth-child(2)::before {
    background-image: url('../assect/recuitment.jpg');
}

.service-card:nth-child(3)::before {
    background-image: url('../assect/competence.jpg');
}

.service-card:nth-child(4)::before {
    background-image: url('../assect/staff outsource.jpg');
}

.service-card:nth-child(5)::before {
    background-image: url('../assect/integrity and facility.jpg');
}

.service-card:nth-child(6)::before {
    background-image: url('../assect/payroll.jpg');
}

/* content stays on top */
.service-card>* {
    position: relative;
    z-index: 2;
}

/* Increase opacity on hover */
.service-card:hover::before {
    opacity: 0.15;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    padding: 20px;
}

.service-link {
    color: #B91C1C;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    text-decoration: underline;
}

.company-description {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.company-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.company-pillars {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
}

.pillar-box {
    background-color: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.pillar-box h3 {
    color: #333;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #D4AF37;
    display: inline-block;
}

.pillar-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.pillar-box ul {
    list-style: none;
    padding: 0;
}

.pillar-box ul li {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(rgba(185, 28, 28, 0.8), rgba(153, 27, 27, 0.8)),
        url('../assect/bgv.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(168 136 136 / 17%) 0%, rgb(84 8 8 / 75%) 100%);
    z-index: 1;
}

.registration-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.registration-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.registration-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.register-button {
    background-color: #D4AF37;
    color: #2c3e50;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.register-button:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 51px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

.footer-logo {
    height: 100px;
    width: auto;
    /* margin-bottom: 20px; */
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.developer-credit {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin: 0;
}
.developer-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}
.developer-link:hover {
    color: #B8941F;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #D4AF37, #B8941F);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

/* About Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url("../assect/About us top.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background-blend-mode: overlay; */
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb-link {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current {
    color: white;
}

/* About Content Section */
.about-content {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.underline1 {
    width: 60px;
    height: 4px;
    background-color: #b91c1c;
    margin: 0 auto 30px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-intro h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-description p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b91c1c, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
    margin-bottom: 80px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-us h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.choose-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.choose-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.choose-item p {
    color: #666;
    line-height: 1.6;
}

/* RESOURCES Section */
.resources-section {
    margin-bottom: 80px;
}

.resources-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.resource-header {
    background-color: #B91C1C;
    color: white;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.resource-content {
    padding: 25px 20px;
}

.resource-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-content ul {
    list-style: none;
    padding-left: 0;
}

.resource-content ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.resource-content ul li::before {
    content: "•";
    color: #B91C1C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Flying Heaven at a Glance Section */
.company-glance {
    margin-bottom: 80px;
}

.glance-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.glance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.glance-image {
    text-align: center;
}

.glance-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glance-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.glance-text strong {
    color: #B91C1C;
    font-weight: 600;
}


/* Services Hero Section */
.services-hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-parallax-bg1 {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("../assect/next back1.jpg");
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.hero-main-container1 {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content-area1 {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-text-section1 {
    flex: 0 0 50%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    margin-left: 50px;
    margin-right: -100px;
    z-index: 3;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-title1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-image-wrapper1 {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(15% 0%, 100% 0%, 100% 65%, 95% 70%, 100% 75%, 100% 100%, 0% 100%, 0% 35%, 5% 30%, 0% 25%);
    overflow: hidden;
}

.hero-main-image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transition: transform 0.1s ease-out;
    position: fixed;
    top: 10%;
    left: 134px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.underline1 {
    width: 60px;
    height: 4px;
    background-color: #b91c1c;
    margin: 0 auto 30px;
}

.services-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-overlay-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-item:hover .service-overlay-icon {
    transform: scale(1);
}

.service-content {
    padding: 30px;
}

.service-title1 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: #666;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-features li::before {
    content: "✓";
    color: #b91c1c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features ul li strong {
    font-weight: 700;
    color: #333;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cta-text {
    color: #b91c1c;
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-arrow {
    color: #b91c1c;
    transition: transform 0.3s ease;
}

.service-item:hover .cta-arrow {
    transform: translateX(5px);
}

/* Get Started Section */
.get-started-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.get-started-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    z-index: 1;
}

.get-started-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.get-started-text {
    flex: 1;
    text-align: left;
}

.get-started-image {
    flex: 1;
    text-align: center;
}

.get-started-img {
    max-width: 100%;
    /* height: auto; */
    border-radius: 15px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s ease;
    max-height: 400px;
}

.get-started-img:hover {
    transform: scale(1.05);
}

.get-started-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.get-started-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.get-started-btn {
    background-color: #d4af37;
    color: #2c3e50;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Job Hero Section */
.job-hero {
    height: 70vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.job-hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("../assect/job opening.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    z-index: 1;
    background-size: 100% 100%;
}

.job-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(185, 28, 28, 0.7) 100%);
    z-index: 2;
}

.job-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.job-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.job-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Job Listings Section */
.job-listings {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Search and Filter Section */
.search-filter-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.search-container {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #b91c1c;
}

.search-btn {
    padding: 15px 25px;
    background-color: #b91c1c;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #991b1b;
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: white;
}

.filter-group select:focus {
    border-color: #b91c1c;
}

/* Jobs Container */
.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.job-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.job-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-location,
.job-type {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.job-location i,
.job-type i {
    color: #b91c1c;
}

.job-summary {
    padding: 20px 25px;
}

.job-summary p {
    color: #666;
    line-height: 1.6;
}

.job-details {
    padding: 0 25px 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.detail-item {
    margin-bottom: 15px;
    padding-top: 15px;
}

.detail-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-item ul {
    list-style: none;
    padding-left: 0;
}

.detail-item ul li {
    color: #666;
    padding: 3px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.detail-item ul li::before {
    content: "•";
    color: #b91c1c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-actions {
    padding: 20px 25px;
    background-color: #f8f9fa;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.read-more-btn,
.apply-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    flex: 1;
}

.read-more-btn {
    background-color: #e0e0e0;
    color: #2c3e50;
}

.read-more-btn:hover {
    background-color: #d0d0d0;
}

.read-more-btn.expanded {
    background-color: #b91c1c;
    color: white;
}

.apply-btn {
    background-color: #d4af37;
    color: #2c3e50;
}

.apply-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

/* No Jobs Message */
.no-jobs-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-jobs-message i {
    font-size: 4rem;
    color: #b91c1c;
    margin-bottom: 20px;
}

.no-jobs-message h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Contact Hero Section */
.contact-hero {
    height: 70vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("../assect/contact us.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(185, 28, 28, 0.7) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-header {
    margin-bottom: 40px;
}

/* Contact Table */
.contact-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background-color: #f8f9fa;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 150px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-icon {
    color: #b91c1c;
    font-size: 1.2rem;
    width: 20px;
}

.contact-value {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-value a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #b91c1c;
}

.contact-value span {
    color: #666;
}

/* Address Section */
.address-section {
    margin-top: 40px;
}

.address-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.address-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.address-row {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.address-row:last-child {
    border-bottom: none;
}

.address-row:hover {
    background-color: #f8f9fa;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.office-icon {
    color: #b91c1c;
    font-size: 1.3rem;
}

.office-header h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.office-address p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.office-address p:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.presence-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-left: 20px;
}

.zone-group {
    flex: 1 1 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.zone-group h5 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 5px;
}

.presence-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presence-list li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Map Image Container */
.map-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 210px;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 4px 4px;
    text-align: center;
    width: 100%;
    height: 585px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: #b91c1c;
    background-color: #f8f9fa;
}

.map-icon {
    font-size: 4rem;
    color: #b91c1c;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    color: #666;
    font-size: 0.9rem;
}

.glance-img1 {
    /* width: 100%; */
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b91c1c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.privacy-link {
    color: #b91c1c;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.submit-btn,
.reset-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn {
    background-color: #b91c1c;
    color: white;
}

.submit-btn:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(185, 28, 28, 0.3);
}

.reset-btn {
    background-color: #6c757d;
    color: white;
}

.reset-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Map Section */
.map-section {
    padding: 100px 0 0;
    background-color: #f8f9fa;
}

.map-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Public Notice Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.popup-container {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    /* overflow-y: auto; */
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-header {
    background: linear-gradient(135deg, #b91c1c, #d4af37);
    color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-content {
    padding: 25px;
    line-height: 1.4;
    color: #333;
}

.popup-content p {
    margin-bottom: 8px;
    text-align: justify;
    font-size: 11px;
    line-height: 1.4;
    font-weight: bold;
}

.popup-content strong {
    color: #b91c1c;
    font-weight: 600;
}

.notice-signature {
    margin-top: 9px;
    padding-top: 8px;
    border-top: 2px solid #e0e0e0;
    text-align: right;
}

.notice-signature p {
    margin: 0;
    font-size: 11px;
    color: #2c3e50;
    font-weight: bold;
}

/* WhatsApp Sticky Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .glance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .resources-title,
    .glance-title {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .choose-us-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 30px 20px;
    }


    .hero-content-area {
        flex-direction: column;
        padding: 20px;
    }

    .hero-text-section {
        flex: none;
        margin: 0 0 20px 0;
        padding: 40px 30px;
    }

    .hero-image-section {
        flex: none;
        height: 50vh;
    }

    .hero-image-wrapper {
        clip-path: polygon(15% 0%, 100% 0%, 100% 65%, 95% 70%, 100% 75%, 100% 100%, 0% 100%, 0% 35%, 5% 30%, 0% 25%);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .company-description {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .get-started-title,
    .registration-title {
        font-size: 2rem;
    }

    .registration-section {
        background-attachment: scroll;
    }

    .job-hero-parallax-bg {
        background-attachment: scroll;
    }

    .job-hero-title {
        font-size: 2.5rem;
    }

    .job-hero-subtitle {
        font-size: 1.1rem;
    }

    .search-filter-section {
        padding: 20px;
    }

    .filter-container {
        grid-template-columns: 1fr;
    }

    .jobs-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-actions {
        flex-direction: column;
    }

    .contact-hero-parallax-bg {
        background-attachment: scroll;
        transform: none !important;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-label {
        min-width: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
    }

    .submit-btn,
    .reset-btn {
        width: 100%;
        max-width: 300px;
    }

    .popup-container {
        margin: 10px;
        max-height: 95vh;
    }

    .popup-header {
        padding: 15px 20px;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-content {
        padding: 20px;
    }

    .popup-content p {
        font-size: 13px;
    }

    .get-started-content {
        flex-direction: column;
    }

    .get-started-text {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }

    .hero-content-area {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
    }

    .hero-text-section {
        flex: none;
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .hero-image-section {
        flex: none;
        height: 300px;
        width: 100%;
    }

    .hero-image-wrapper {
        clip-path: none;
        border-radius: 10px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Fix Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        background-color: white;
        padding: 25px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-description {
        padding: 0;
        font-size: 0.9rem;
    }

    /* Fix Company Pillars */
    .company-pillars {
        flex-direction: column;
        gap: 15px;
    }

    .pillar-box {
        min-width: auto;
        padding: 20px 15px;
    }

    .pillar-box h3 {
        font-size: 18px;
    }

    .pillar-box p {
        font-size: 14px;
    }

    /* Fix Section Titles */
    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    /* Fix Company Description */
    .company-description {
        padding: 25px 20px;
    }

    .company-description p {
        font-size: 1rem;
    }

    /* Fix Registration Section */
    .registration-title {
        font-size: 2rem;
    }

    .registration-subtitle {
        font-size: 1rem;
    }

    /* Fix Navigation */
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo .logo {
        height: 70px;
    }

    .services-hero {
        height: auto;
        min-height: 70vh;
        padding: 20px 0;
    }

    .hero-content-area1 {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
    }

    .hero-text-section1 {
        flex: none;
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .hero-image-section {
        flex: none;
        height: 300px;
        width: 100%;
    }

    .hero-image-wrapper1 {
        clip-path: none;
        border-radius: 10px;
        overflow: hidden;
    }

    .hero-main-image1 {
        position: relative;
        top: auto;
        left: auto;
    }

    .hero-title1 {
        font-size: 1.8rem;
        text-align: center;
    }

    /* Services Grid Mobile Fix */
    .services-grid1 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        margin: 0 10px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-features li {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Get Started Section Mobile Fix */
    .get-started-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .get-started-text {
        margin-bottom: 30px;
    }

    .get-started-img {
        max-height: 250px;
    }

    /* Contact Page Mobile Fixes */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-image-container {
        margin-top: 0;
    }

    .map-placeholder {
        height: auto;
        padding: 20px;
    }

    .glance-img1 {
        max-width: 100%;
        height: 295px;
    }

    .contact-table,
    .address-table {
        margin: 0 -10px;
    }

    .contact-row,
    .address-row {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .contact-label {
        min-width: auto;
        margin-bottom: 5px;
    }

    .presence-list {
        flex-direction: column;
        padding-left: 0;
        gap: 15px;
    }

    .zone-group {
        flex: none;
        width: 100%;
    }

    /* Contact Form Mobile Fix */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .submit-btn,
    .reset-btn {
        width: 100%;
    }

    /* Job Opening Page Mobile Fixes */
    .job-hero {
        height: auto;
        min-height: 60vh;
        padding: 40px 0;
    }

    .job-hero-title {
        font-size: 2.2rem;
    }

    .job-hero-subtitle {
        font-size: 1rem;
    }

    .search-filter-section {
        padding: 15px;
        margin: 0 10px;
    }

    .filter-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-box {
        max-width: 100%;
    }

    .jobs-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .job-card {
        margin: 0;
    }

    .job-header,
    .job-summary,
    .job-details,
    .job-actions {
        padding: 15px 20px;
    }

    .job-actions {
        flex-direction: column;
        gap: 10px;
    }

    .read-more-btn,
    .apply-btn {
        width: 100%;
    }

    /* About Page Mobile Fixes */
    .about-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .resource-card {
        margin: 0 10px;
    }

    .glance-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* General Mobile Typography */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .registration-title {
        font-size: 1.8rem;
    }

    .registration-subtitle {
        font-size: 0.95rem;
    }

    /* Navigation Mobile Fix */
    .nav-logo .logo {
        height: 60px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Container Mobile Fix */
    .container {
        padding: 0 15px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .developer-credit {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .resource-content {
        padding: 20px 15px;
    }

    .resources-title,
    .glance-title {
        font-size: 1.8rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        padding: 25px 15px;
    }

    .feature-item,
    .choose-item {
        padding: 25px 15px;
    }

    .hero-text-section {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .get-started-title,
    .registration-title {
        font-size: 1.8rem;
    }

    .job-hero-title {
        font-size: 2rem;
    }

    .job-hero-subtitle {
        font-size: 1rem;
    }

    .search-filter-section {
        padding: 15px;
    }

    .job-card {
        margin: 0 10px;
    }

    .job-header,
    .job-summary,
    .job-details,
    .job-actions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-table,
    .address-table {
        margin: 0 -10px;
    }

    .contact-row,
    .address-row {
        padding: 20px 15px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .map-placeholder {
        padding: 40px 20px;
        height: 300px;
    }

    .popup-header h2 {
        font-size: 1.3rem;
    }

    .popup-content {
        padding: 15px;
    }

    .popup-content p {
        font-size: 12px;
    }

    .hero-text-section {
        padding: 25px 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .company-description {
        padding: 20px 15px;
    }

    .company-description p {
        font-size: 0.95rem;
    }

    .pillar-box {
        padding: 15px 12px;
    }

    .pillar-box h3 {
        font-size: 16px;
    }

    .pillar-box p {
        font-size: 13px;
    }

    .registration-title {
        font-size: 1.8rem;
    }

    .registration-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Fix popup for mobile */
    .popup-container {
        margin: 5px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-content {
        padding: 15px;
    }

    .popup-content p {
        font-size: 10px;
    }

    .hero-title1 {
        font-size: 1.6rem;
    }

    .service-content {
        padding: 15px 10px;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .job-hero-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-text {
        padding: 20px 15px;
    }

    .feature-item,
    .choose-item {
        padding: 20px 15px;
    }

    .resource-card {
        margin: 0 5px;
    }

    .resource-content {
        padding: 15px 10px;
    }

    .nav-logo .logo {
        height: 50px;
    }

    .container {
        padding: 0 10px;
    }
}

@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 15px 10px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .nav-logo .logo {
        height: 60px;
    }
}

/* Landscape Mobile Fix */
@media screen and (max-width: 768px) and (orientation: landscape) {

    .services-hero,
    .job-hero,
    .contact-hero {
        height: auto;
        min-height: 50vh;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.contact-hero-parallax-bg {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Loading state for form submission */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.hero-main-image,
.hero-parallax-bg {
    backface-visibility: hidden;
    perspective: 1000px;
}

.job-hero-parallax-bg {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-item,
.choose-item,
.mission-card,
.vision-card {
    animation: fadeInUp 0.6s ease-out;
}