@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
/* CSS Variables */
:root {
    --primary: #4ca700;
    --primary-dark: #3b8101;
    --secondary: #34a853;
    --accent: #fbbc04;
    --danger: #ea4335;
    --light: #f8f9fa;
    --dark: #202124;
    --gray: #5f6368;
    --border: #dadce0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
}
.border-bottom {
    border-bottom: 2px solid var(--primary);
    border-radius: var(--border-radius);
}
.background-color {
    background-color: var(--primary);
}
.background-color:hover {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.subscribe-background-color {
    background-color: var(--primary);
    border: 2px solid var(--light);
}
.subscribe-background-color:hover {
    border: 2px solid var(--light);
    color: var(--light);
    background-color: transparent;
}
.other-btn {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.other-btn:hover {
    color: var(--light);
    background-color: var(--primary);
}
.btn-hover {
    background-color: var(--primary-dark);
}
.icons-color {
    color: var(--primary);
}
.bg-primary {
    background-color: var(--primary);
}
.primary-text {
    color: var(--primary);
}
.primary-text-dark {
    color: var(--primary-dark);
}
.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
}
.bt-gradient-transparent {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
}
.primary-text {
    color: var(--primary);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/* Utility Classes */
.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-tag {
    transition: all 0.2s ease;
}

.job-tag:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.company-logo {
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.1);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}
/* Animated Gradient Background */
.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Shapes */
#hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

#hero-shapes .shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#hero-shapes .shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

#hero-shapes .shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

#hero-shapes .shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 60%;
    animation-delay: 6s;
}

#hero-shapes .shape-5 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
    animation-delay: 8s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Animated Dots Pattern */
#hero-shapes .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.3) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    animation: moveDots 30s linear infinite;
}

#hero-shapes .dots-1 {
    background-size: 30px 30px;
    animation-duration: 40s;
}

#hero-shapes .dots-2 {
    background-size: 25px 25px;
    animation-duration: 35s;
    animation-direction: reverse;
}

#hero-shapes .dots-3 {
    background-size: 35px 35px;
    animation-duration: 45s;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Fade-in animation for content */
#hero-shapes .fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    #hero-shapes .shape {
        animation-duration: 25s;
    }

    #hero-shapes .dots {
        animation-duration: 50s;
    }
}
/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
}

.about-section .card {
    flex: 1 1 300px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
    min-height: 350px;
    box-shadow: var(--shadow);
}

.about-section .card.left {
    background-color: #f8f7f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.about-section .card.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .card-info {
    background: linear-gradient(to top right, var(--primary), var(--primary));
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 80%;
    border-radius: 15px;
    position: absolute;
    bottom: 20px;
}

.about-section .card-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.about-section .card-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.about-section .card.center {
    background-color: var(--primary);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}

.about-section .card.center h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section .card.center p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-section .card.center a {
    text-decoration: none;
    font-weight: 600;
}

.about-section .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-section .btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.about-section .btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

.about-section .btn.outline:hover {
    background: #fff;
    color: var(--primary);
}

.about-section .btn.filled {
    background: #fff;
    color: var(--primary);
}

.about-section .btn.filled:hover {
    background: var(--primary);
    color: #fff;
}

.about-section .card.right {
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-section .card.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-section .insta-tag {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    box-shadow: var(--shadow);
    border: 6px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 6px solid #fff;
}

.service-card.video {
    border: 6px solid #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Job Listings Section */
.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

.job-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.job-image {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.tags {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.job-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.icons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 10px;
}

.icons svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    stroke: var(--primary);
    fill: none;
    transition: 0.3s;
}

.icons svg:hover {
    stroke: var(--primary);
    fill: rgba(255, 77, 45, 0.1);
}

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.company {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    margin-bottom: 1rem;
}

.company img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 14px;
    color: #666;
}

.salary-apply {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: auto;
    padding-top: 1rem;
}

.salary {
    font-weight: 600;
    color: #555;
}

.apply-btn {
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 10px;
}

.nav-item.active {
    color: var(--primary);
    background-color: rgba(137, 243, 54, 0.1);
}

.nav-item:hover {
    transform: translateY(-2px);
    background-color: rgba(137, 243, 54, 0.05);
}

.nav-icon {
    font-size: 20px;
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
}

/* Job Details Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px 0;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 32px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.job-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.job-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 15px;
}

.meta-item i {
    color: var(--primary);
    font-size: 16px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(66, 133, 244, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-content {
    padding: 30px;
}

.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary);
}

.section-content {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

.section-content ul {
    padding-left: 20px;
    margin-top: 12px;
}

.section-content li {
    margin-bottom: 10px;
    position: relative;
}

.section-content li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.company-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.company-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.company-logo {
    width: 60px;
    height: 60px;

    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo i {
    font-size: 28px;
    color: var(--primary);
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.company-content {
    padding: 25px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.contact-item:hover {
    background: rgba(66, 133, 244, 0.05);
}

.contact-item i {
    width: 20px;
    color: var(--primary);
}

.contact-item span {
    color: var(--gray);
    font-size: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(66, 133, 244, 0.05);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #d33b2c;
}

.share-container {
    position: relative;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: none;
    z-index: 100;
    min-width: 180px;
    margin-bottom: 10px;
}

.share-dropdown.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.2s;
}

.share-option:hover {
    background: rgba(66, 133, 244, 0.05);
}

.share-option i {
    width: 20px;
    color: var(--gray);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
    font-weight: 500;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.show {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-section .card {
        flex: 1 1 250px;
    }
}

@media (max-width: 992px) {
    .about-section .card.center h2 {
        font-size: 1.6rem;
    }
    .about-section .card.center p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 968px) {
    .job-details-container {
        grid-template-columns: 1fr;
    }

    .company-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        gap: 30px;
    }
    .about-section .card {
        width: 100%;
        min-height: auto;
    }
    .about-section .card.left img {
        height: 250px;
    }
    .about-section .card-info {
        width: 90%;
        bottom: 15px;
    }
    .about-section .card.center {
        padding: 30px 20px;
    }
    .about-section .card.center h2 {
        font-size: 1.8rem;
    }
    .about-section .card.center p {
        font-size: 1rem;
    }
    .about-section .buttons {
        flex-direction: column;
    }
    .about-section .btn {
        width: 100%;
        text-align: center;
    }

    .services {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .service-card {
        width: 120px;
        height: 120px;
    }
    .service-card img {
        width: 60px;
        height: 60px;
    }

    .job-listings {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .job-image {
        height: 160px;
    }

    .bottom-nav {
        padding: 8px 0;
    }
    .nav-icon {
        font-size: 18px;
    }
    .nav-label {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .services {
        gap: 1rem;
        padding: 1rem;
    }
    .service-card {
        width: 100px;
        height: 100px;
    }
    .service-card img {
        width: 50px;
        height: 50px;
    }

    .job-listings {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .job-card {
        max-width: 100%;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .salary-apply {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .apply-btn {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .job-title {
        font-size: 26px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gradient-bg h1 {
        font-size: 2rem;
    }
    .gradient-bg p {
        font-size: 1rem;
    }

    .about-section .card-info h3 {
        font-size: 1.1rem;
    }
    .about-section .card-info p {
        font-size: 0.9rem;
    }

    .about-section .card.center h2 {
        font-size: 1.5rem;
    }
    .about-section .card.center p {
        font-size: 0.95rem;
    }

    .about-section .insta-tag {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}
.company-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card:hover {
    transform: translateY(-4px);
}

.company-card:hover .company-logo {
    transform: scale(1.05);
}

.company-logo {
    transition: transform 0.3s ease;
}

.filter-btn {
    transition: all 0.2s ease;
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Custom styles for mobile two-column layout */
@media (max-width: 640px) {
    .company-card {
        padding: 1rem;
    }

    .company-logo {
        width: 4rem;
        height: 4rem;
    }

    .company-card h3 {
        font-size: 0.875rem;
    }

    .company-card span {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
    }
}

.hero-pattern {
    background-color: #f3f4f6;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.job-card {
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-icon {
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.price-card {
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item {
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.free-card {
    border: 2px solid #e5e7eb;
}

.free-card:hover {
    border-color: #9ca3af;
}

#accountype-selection .account-selection {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

#accountype-selection .account-selection h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

#accountype-selection .account-selection p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#accountype-selection .account-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#accountype-selection .account-type {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

#accountype-selection .account-type:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

#accountype-selection .account-type.selected {
    border-color: var(--primary);
    background-color: rgba(42, 157, 143, 0.05);
}

#accountype-selection .account-type i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--primary);
}

#accountype-selection .account-type-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    text-align: left;
}

#accountype-selection .account-type-content p {
    margin: 0;
    text-align: left;
    color: #666;
    font-size: 0.95rem;
}
#accountype-selection .signin-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

#accountype-selection .signin-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #accountype-selection .account-selection {
        padding: 1.8rem;
    }

    #accountype-selection .account-selection h1 {
        font-size: 1.7rem;
    }

    #accountype-selection .account-type {
        padding: 1.2rem;
    }

    #accountype-selection .account-type i {
        font-size: 2rem;
        margin-right: 1rem;
    }

    #accountype-selection .account-type-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #accountype-selection .account-selection {
        padding: 1.5rem;
    }

    #accountype-selection .account-selection h1 {
        font-size: 1.5rem;
    }

    #accountype-selection .account-type {
        flex-direction: column;
        text-align: center;
    }

    #accountype-selection .account-type i {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }

    #accountype-selection .account-type-content h3,
    #accountype-selection .account-type-content p {
        text-align: center;
    }
}
#jobseeker-registration .form-container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#jobseeker-registration .input-field {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

#jobseeker-registration .input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

#jobseeker-registration .btn-primary {
    background-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

#jobseeker-registration .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#jobseeker-registration .file-upload-area {
    border: 2px dashed var(--border);
    transition: all 0.3s ease;
}

#jobseeker-registration .file-upload-area:hover {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.05);
}

#jobseeker-registration .file-upload-area.dragover {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.1);
}

#jobseeker-registration .checkbox-custom {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--primary);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

#jobseeker-registration .checkbox-custom:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

#jobseeker-registration .checkbox-custom:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
}

#jobseeker-registration .section-title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

#jobseeker-registration .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #jobseeker-registration .form-container {
        border-radius: 0;
        box-shadow: none;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#jobseeker-registration .fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
#employer-registration .form-container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#employer-registration .input-field {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

#employer-registration .input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

#employer-registration .btn-primary {
    background-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

#employer-registration .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#employer-registration .logo-upload-area {
    border: 2px dashed var(--primary);
    transition: all 0.3s ease;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

#employer-registration .logo-upload-area:hover {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.05);
}

#employer-registration .logo-upload-area.dragover {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.1);
}

#employer-registration .checkbox-custom {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--primary);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

#employer-registration .checkbox-custom:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

#employer-registration .checkbox-custom:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
}

#employer-registration .section-title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

#employer-registration .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #employer-registration .form-container {
        border-radius: 0;
        box-shadow: none;
    }

    #employer-registration .logo-upload-area {
        width: 100px;
        height: 100px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#employer-registration .fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
