/* =========================================
   Khushi Housing Solutions - Career Portal
   Custom Styles
   ========================================= */

/* CSS Variables */
:root {
    --or: #ec6551;      /* Coral / Primary */
    --or-dk: #d55845;   /* Coral Dark / Hover */
    --or-lt: #fceee8;   /* Coral Light / Tint */
    --nv: #193845;      /* Navy / Dark */
    --nv-lt: #244b5c;   /* Navy Light / Hover */
    --wh: #ffffff;      /* White */

    /* Text & UI Colours */
    --tx: #1B2A4A;      /* Text Primary */
    --tx-m: #4B5563;    /* Text Muted */
    --tx-l: #9CA3AF;    /* Text Light */
    --bg: #F8F8F8;      /* Background */
    --bd: #E5E7EB;      /* Border */

    /* Radii */
    --rs: 8px;          /* buttons, inputs */
    --r: 12px;          /* cards, modals */
    --pill: 999px;      /* nav arrows, dots */

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 var(--r) 30px rgba(0, 0, 0, 0.08);

    /* Legacy compatibility (mappping old to new) */
    --primary-navy: var(--nv);
    --secondary-navy: var(--nv-lt);
    --gold: var(--or);
    --gold-light: var(--or-dk);
    --white: var(--wh);
    --light-bg: var(--bg);
    --text-dark: var(--tx);
    --text-muted: var(--tx-m);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--tx);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Commissioner', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-gold {
    color: var(--or) !important;
}

/* Button Styles */
.btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 13px 28px;
    border-radius: var(--rs);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-or, .btn-primary {
    background: var(--or);
    color: var(--wh) !important;
    border-color: var(--or);
}

.btn-or:hover, .btn-primary:hover {
    background: var(--or-dk);
    border-color: var(--or-dk);
    transform: translateY(-1px);
}

.btn-nv {
    background: var(--nv);
    color: var(--wh) !important;
    border-color: var(--nv);
}

.btn-nv:hover {
    background: var(--nv-lt);
    border-color: var(--nv-lt);
    transform: translateY(-1px);
}

.btn-gl, .btn-outline-secondary {
    background: transparent;
    border-color: var(--bd);
    color: var(--tx) !important;
}

.btn-gl:hover, .btn-outline-secondary:hover {
    background: var(--bg);
    border-color: var(--tx-l);
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--or);
    color: var(--wh);
    border: none;
}

.btn-gold:hover {
    background: var(--or-dk);
    color: var(--wh);
}

/* Header Styles */
.main-header {
    background: var(--wh);
    box-shadow: 0 2px var(--r) rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-left {
    flex: 1;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--nv);
}

.logo i {
    color: var(--or);
    margin-right: var(--r);
}

.logo-text {
    font-weight: 300;
}

.logo-text strong {
    font-weight: 700;
}

.nav-link {
    color: var(--tx) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--or) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--or);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 2rem);
}

.btn-apply {
    background: var(--or) !important;
    color: var(--wh) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--pill);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.btn-apply:hover {
    background: var(--or-dk) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--nv);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 31, 58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Home Hero Section */
.home-hero {
    background: linear-gradient(135deg, var(--nv) 0%, var(--nv-lt) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: var(--wh);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-illustration {
    text-align: center;
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(236, 101, 81, 0.1);
    border-radius: var(--pill);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

/* Career Hero Section */
.career-hero {
    background: linear-gradient(135deg, var(--nv) 0%, var(--nv-lt) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.career-hero .hero-content {
    color: var(--wh);
}

.career-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave::before {
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    background: var(--wh);
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nv);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--tx-m);
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background: var(--wh);
}

.about-image img {
    border-radius: var(--r);
}

.about-stats .stat-item {
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--r);
    transition: all 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--or);
    margin: 0;
}

.stat-label {
    color: var(--tx-m);
    margin: 0;
}

/* Feature Cards */
.why-join-section {
    background: var(--bg);
}

.feature-card {
    background: var(--wh);
    padding: 2rem;
    border-radius: var(--r);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-var(--r));
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-dk) 100%);
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--wh);
}

.feature-card h4 {
    color: var(--nv);
    margin-bottom: 1rem;
}

/* Benefits Cards */
.benefit-card {
    background: var(--wh);
    padding: 2rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--or);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--or);
}

.benefit-card h4 {
    color: var(--nv);
    margin-bottom: 0.5rem;
}

/* Job Filters */
.job-filters {
    background: var(--wh);
    padding: 2rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: var(--r);
    top: 50%;
    transform: translateY(-50%);
    color: var(--tx-m);
}

.search-box input {
    padding-left: 45px;
}

/* Job Cards */
.job-card {
    background: var(--wh);
    padding: 2rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-badge {
    background: var(--nv);
    color: var(--wh);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-type-badge {
    background: var(--bg);
    color: var(--tx);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nv);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    color: var(--tx-m);
    font-size: 0.9rem;
}

.job-meta-item i {
    color: var(--or);
    margin-right: 0.3rem;
}

.job-description {
    color: var(--tx-m);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.job-card-footer {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.job-card-footer .btn {
    flex: 1;
}

/* Job Details Page */
.job-header-section {
    background: var(--bg);
    padding: 3rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--tx-m);
}

.breadcrumb-nav a:hover {
    color: var(--or);
}

.breadcrumb-nav i {
    font-size: 0.7rem;
    color: var(--tx-m);
}

.job-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nv);
    margin-bottom: 1rem;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tx);
}

.meta-item i {
    color: var(--or);
}

.job-details-section {
    padding: 4rem 0;
}

.job-content-card {
    background: var(--wh);
    padding: 3rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
}

.job-section {
    border-bottom: 1px solid var(--bg);
}

.section-heading {
    color: var(--nv);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-content {
    color: var(--tx);
    line-height: 1.8;
}

.apply-cta-box {
    background: linear-gradient(135deg, var(--nv) 0%, var(--nv-lt) 100%);
    padding: 2rem;
    border-radius: var(--r);
    text-align: center;
    color: var(--wh);
}

.apply-cta-box h4 {
    color: var(--wh);
    margin-bottom: 0.5rem;
}

/* Sidebar */
.job-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--wh);
    padding: 2rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-title {
    color: var(--nv);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--or);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--tx-m);
    font-weight: 500;
}

.summary-value {
    color: var(--tx);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wh);
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.share-btn.linkedin { background: #0077B5; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--or);
    width: 20px;
}

.contact-item a {
    color: var(--tx);
}

.contact-item a:hover {
    color: var(--or);
}

/* Apply Form */
.apply-header-section {
    background: var(--bg);
    padding: 3rem 0;
}

.apply-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nv);
    margin-bottom: 1rem;
}

.apply-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--tx-m);
}

.apply-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apply-form-section {
    padding: 4rem 0;
}

.application-form-card {
    background: var(--wh);
    padding: 3rem;
    border-radius: var(--r);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    color: var(--nv);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--or);
}

.form-label.required::after {
    content: ' *';
    color: var(--danger);
}

.form-control, .form-select {
    border: 2px solid var(--bg);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--or);
    box-shadow: 0 0 0 0.2rem rgba(199, 154, 59, 0.25);
}

/* Thank You Page */
.thankyou-section {
    padding: 5rem 0;
}

.thankyou-card {
    background: var(--wh);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 4rem;
    color: var(--wh);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thankyou-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nv);
    margin-bottom: 1rem;
}

.thankyou-subtitle {
    font-size: 1.2rem;
    color: var(--tx-m);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 64px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--bg);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: var(--or);
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--wh);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h5 {
    color: var(--nv);
    margin-bottom: 0.5rem;
}

.contact-box {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--r);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tx);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--or);
}

/* Share Section */
.share-section {
    background: var(--bg);
    padding: 3rem 0;
}

.share-buttons-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn-large {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--wh);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.share-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--wh);
}

.share-btn-large.linkedin { background: #0077B5; }
.share-btn-large.facebook { background: #1877F2; }
.share-btn-large.twitter { background: #1DA1F2; }
.share-btn-large.whatsapp { background: #25D366; }

/* CTA Sections */
.cta-section, .career-cta-section {
    background: linear-gradient(135deg, var(--nv) 0%, var(--nv-lt) 100%);
    padding: 5rem 0;
}

/* Contact Section */
.contact-section {
    background: var(--wh);
}

.contact-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--r);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-dk) 100%);
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--wh);
}

.contact-card h5 {
    color: var(--nv);
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: #e6e6e6;
    color: var(--wh);
    padding: 4rem 0 0;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.footer-logo i {
    color: var(--or);
    margin-right: var(--r);
}

.footer-desc {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pill);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #323232;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--or);
    color: var(--wh);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--or);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(48, 48, 48, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--or);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--or);
    width: 20px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(41, 41, 41, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--or);
    color: var(--wh);
    border: none;
    border-radius: var(--pill);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--or-dk);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-brand {
        position: static;
        transform: none;
    }
    
    .navbar-left {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .career-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .job-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .career-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .job-card-footer {
        flex-direction: column;
    }
    
    .contact-links, .share-buttons-large {
        flex-direction: column;
        align-items: center;
    }
    
    .apply-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    section {
        padding: 50px 0;
    }
    
    .thankyou-card {
        padding: 2rem 1.5rem;
    }
    
    .application-form-card {
        padding: 2rem 1.5rem;
    }
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.footer-logo-img{
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-logo-link{
    display: inline-block;
}

.footer-bottom-links{
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom-links a{
    color: rgba(39, 39, 39, 0.85);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover{
    color: #F37C52;
    text-decoration: underline;
}

.header-logo{
    max-height: 52px;
    width: auto;
    display: block;
}

.main-footer li,
.main-footer li span,
.main-footer li a{
    color: rgba(39, 39, 39, 0.85) !important;
}



