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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

header {
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 1rem;
    padding-bottom: 0.4rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3b82f6;
}

/* From Uiverse.io by elijahgummer */ 
button {
    font: inherit;
    background: #f5f5f5;
    border: 0;
    color: #002459;
    border-radius: .5em;
    font-size: 1.1rem;
    padding: .25em .7em;
    font-weight: 600;
    /* box-shadow: 0 .1em .3em #acbfdc; */
    cursor: pointer;
    transition: .15s;
}
button:active {
    /* box-shadow: 0 .05em .15em #cecece; */
    translate: 0 .12em;
}
/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    padding: 0;
    text-decoration: none;
}

.dropdown-toggle:hover {
    color: #0267c3;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #666;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #0267c3;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    border: 1px solid #e5e7eb;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #0267c3;
    border-left-color: #0267c3;
    padding-left: 24px;
}

/* Keep dropdown open when hovering over menu */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Services dropdown specific styling */
.dropdown:first-of-type .dropdown-menu {
    right: 0;
    left: auto;
}

/* Animation for dropdown items */
.dropdown-menu li {
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
    transform: translateY(5px);
}

.dropdown:hover .dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown:hover .dropdown-menu li:nth-child(2) { animation-delay: 0.15s; }
.dropdown:hover .dropdown-menu li:nth-child(3) { animation-delay: 0.2s; }
.dropdown:hover .dropdown-menu li:nth-child(4) { animation-delay: 0.25s; }
.dropdown:hover .dropdown-menu li:nth-child(5) { animation-delay: 0.3s; }
.dropdown:hover .dropdown-menu li:nth-child(6) { animation-delay: 0.35s; }
.dropdown:hover .dropdown-menu li:nth-child(7) { animation-delay: 0.4s; }

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

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 8px;
        border-radius: 4px;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px;
    }
    
    .dropdown-arrow {
        display: none;
    }
}

/* Additional styling for better visual hierarchy */
.dropdown-menu a[href="#ai-features"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.dropdown-menu a[href="#hirely-academy"] {
    color: #374151;
    font-weight: 500;
}

.dropdown-menu a[href="#charity"] {
    color: #374151;
    font-weight: 500;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(2px);
}

.mobile-nav.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

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

/* Mobile Navigation Content */
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(350px, 85vw);
    height: 100%;
    background: white;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

/* Mobile Navigation Header */
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #374151;
    cursor: pointer;
    float: right;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
    line-height: 1;
}

.mobile-nav-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #374151;
    transform: rotate(90deg);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    clear: both;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links > li:not(.mobile-dropdown) > a {
    display: block;
    padding: 0.875rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links > li:not(.mobile-dropdown) > a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding-left: 1.25rem;
}

.mobile-nav-links > li:not(.mobile-dropdown) > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #3b82f6;
    transform: translateY(-50%);
    transition: height 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.mobile-nav-links > li:not(.mobile-dropdown) > a:hover::before {
    height: 60%;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    margin-bottom: 1rem;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    background: none;
    border: none;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.mobile-dropdown-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mobile-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 1rem;
    margin-top: 0.5rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 800px;
    padding: 0.75rem 0 0.75rem 1rem;
    overflow: visible;
}

.mobile-dropdown-menu li {
    list-style: none;
    margin-bottom: 0.25rem;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.625rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-menu a:hover {
    background: white;
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
}

/* Mobile Contact Button */
.mobile-contact-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.mobile-contact-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    /* Tablet and below - Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar nav ul {
        display: none;
    }
    
    .navbar .contact-btn {
        display: none;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile and below */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .mobile-nav-content {
        width: min(300px, 90vw);
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    /* Small mobile */
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .mobile-nav-content {
        width: 95vw;
        padding: 0.75rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.3rem 0.5rem;
        font-size: 1.1rem;
        border-width: 1px;
    }
    
    .mobile-nav-links > li:not(.mobile-dropdown) > a {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }
    
    .mobile-dropdown-toggle {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }
}

@media screen and (min-width: 1025px) {
    /* Desktop and above - Hide mobile navigation */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}



/* Hero Section */

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background-color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-image: url('../Images/hero-page-image.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.6rem;
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-text .highlight {
    color: #83a8ca;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
}

.search-container {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 1px 10px 25px rgba(0,0,0,0.1);
    display: flex;
    margin-bottom: 2rem;
    border: 2px solid #0267c3;
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
    border-radius: 8px;
}

.search-btn {
    background: linear-gradient(90deg, #096dcb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0267c3;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* From Uiverse.io by adamgiebl */ 
button1, .btn-primary {
font-family: inherit;
font-size: 16px;
background: white;
color: white;
padding: 0.7em 1em;
padding-left: 0.9em;
display: flex;
align-items: center;
border: none;
border-radius: 16px;
overflow: hidden;
transition: all 0.2s;
cursor: pointer;
text-decoration: none;
}

button1 span, .btn-primary span {
display: block;
margin-left: 0.3em;
transition: all 0.3s ease-in-out;
}

button1 svg, .btn-primary svg {
display: block;
transform-origin: center center;
transition: transform 0.3s ease-in-out;
}

button1:hover .svg-wrapper, .btn-primary:hover .svg-wrapper {
animation: fly-1 0.6s ease-in-out infinite alternate;
}

button1:hover svg, .btn-primary:hover svg {
transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button1:hover span, .btn-primary:hover span {
transform: translateX(5em);
}

button1:active, .btn-primary:active {
transform: scale(0.95);
}

@keyframes fly-1 {
from {
    transform: translateY(0.1em);
}

to {
    transform: translateY(-0.1em);
}
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #0267c3;
    border: 2px solid #0267c3;
    color: white;
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #196ebd;
    display: block;
}

.stat-label {
    color: #c5c8cc;
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    z-index: 3;
}

.floating-badge .stars {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.floating-badge .checkmark {
    font-size: 1.2rem;
}

.circular-element {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 3;
}

/* Responsive Design Improvements */

/* Large Tablets (769px to 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Tablet Navigation - Enhanced Mobile Style */
    .nav-links {
        display: none;
    }

    nav button:not(.mobile-menu-toggle) {
        display: none;
    }

    .mobile-menu-toggle {
        display: block !important;
        background: rgba(2, 103, 195, 0.15);
        border: 2px solid #0267c3;
        color: #0267c3;
        box-shadow: 0 2px 8px rgba(2, 103, 195, 0.3);
        font-size: 1.7rem;
        padding: 0.7rem;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: none;
    }

    .mobile-menu-toggle:hover {
        background: #0267c3;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(2, 103, 195, 0.3);
    }

    .mobile-menu-toggle:active {
        box-shadow: 0 .05em .15em #cecece;
        translate: 0 .12em;
    }

    /* Tablet Side Navigation - Enhanced Mobile Style */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .mobile-nav.active {
        display: block !important;
    }

    .mobile-nav-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 320px; /* Slightly wider for tablet */
        height: 100%;
        background: white;
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav.active .mobile-nav-content {
        transform: translateX(0);
    }

    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #002459;
        cursor: pointer;
        float: right;
        margin-bottom: 2rem;
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .mobile-nav-close:hover {
        background: rgba(2, 103, 195, 0.1);
        color: #0267c3;
    }

    .mobile-nav-close:active {
        box-shadow: 0 .05em .15em #cecece;
        translate: 0 .12em;
    }

    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
    }

    .mobile-nav-links li {
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 1rem;
    }

    .mobile-nav-links li:last-child {
        border-bottom: none;
    }

    .mobile-nav-links a {
        text-decoration: none;
        color: #002459;
        font-size: 1.2rem; /* Slightly larger for tablet */
        font-weight: 500;
        display: block;
        padding: 0.75rem 0;
        transition: all 0.3s ease;
        border-radius: 6px;
    }

    .mobile-nav-links a:hover {
        color: #0267c3;
        background: rgba(2, 103, 195, 0.05);
        padding-left: 1rem;
    }

    .mobile-nav-links a.active {
        color: #0267c3;
        font-weight: 600;
        background: rgba(2, 103, 195, 0.1);
        padding-left: 1rem;
    }

    .mobile-contact-btn {
        background: linear-gradient(90deg, #096dcb 0%, #3b82f6 100%);
        color: white;
        border: none;
        padding: 1.2rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        width: 100%;
        margin-top: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(9, 109, 203, 0.3);
    }

    .mobile-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(9, 109, 203, 0.4);
    }

    .mobile-contact-btn:active {
        box-shadow: 0 .05em .15em #cecece;
        translate: 0 .12em;
    }

    /* Mobile Navigation Dropdown Styles */
    .mobile-dropdown {
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px 20px;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        background: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 6px;
        margin: 0.3rem 0;
    }

    .mobile-dropdown-toggle:hover {
        background-color: #f8fafc;
        color: #0267c3;
        padding-left: 1rem;
    }

    .mobile-dropdown-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
        color: #666;
    }

    .mobile-dropdown.active .mobile-dropdown-arrow {
        transform: rotate(180deg);
        color: #0267c3;
    }

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        background-color: #f8fafc;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin: 0;
        border-radius: 6px;
        margin-top: 0.5rem;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 1000px;
        padding: 10px 0;
        overflow: visible;
    }

    .mobile-dropdown-menu li {
        list-style: none;
    }

    .mobile-dropdown-menu a {
        display: block;
        padding: 12px 40px;
        color: #6b7280;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .mobile-dropdown-menu a:hover {
        background-color: #ffffff;
        color: #0267c3;
        border-left-color: #0267c3;
        padding-left: 44px;
    }

    /* Special styling for highlighted items in mobile */
    .mobile-dropdown-menu a[href="#ai-features"] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 500;
    }

    .mobile-dropdown-menu a[href="#hirely-academy"] {
        color: #059669;
        font-weight: 500;
    }

    .mobile-dropdown-menu a[href="#charity"] {
        color: #dc2626;
        font-weight: 500;
    }

    /* Animation for mobile dropdown items */
    .mobile-dropdown-menu li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(5) { transition-delay: 0.3s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(6) { transition-delay: 0.35s; }
    .mobile-dropdown.active .mobile-dropdown-menu li:nth-child(7) { transition-delay: 0.4s; }

    /* Update existing mobile nav styles to accommodate dropdowns */
    .mobile-nav-links {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-nav-links > li:not(.mobile-dropdown) > a {
        display: block;
        padding: 15px 20px;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #e5e7eb;
        transition: all 0.2s ease;
        border-radius: 6px;
        margin: 0.3rem 0;
    }

    .mobile-nav-links > li:not(.mobile-dropdown) > a:hover {
        background-color: #f8fafc;
        color: #0267c3;
        padding-left: 1rem;
    }

    /* Mobile nav content scrolling for longer menus */
    .mobile-nav-content {
        max-height: 100vh;
        overflow-y: auto;
        padding-bottom: 20px;
    }

    /* Smooth scrolling for mobile nav */
    .mobile-nav-content::-webkit-scrollbar {
        width: 4px;
    }

    .mobile-nav-content::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .mobile-nav-content::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 4px;
    }

    .mobile-nav-content::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .stats {
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Standard Tablets (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }

    nav button:not(.mobile-menu-toggle) {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: rgba(2, 103, 195, 0.1);
        border: 2px solid #0267c3;
        box-shadow: 0 2px 8px rgba(2, 103, 195, 0.3);
        color: #0267c3;
        font-size: 1.6rem;
        padding: 0.6rem;
        border-radius: 8px;
        font-weight: bold;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h2 {
        margin: 1rem;
        margin-top: 3rem;
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-text .subtitle {
        margin: 1rem;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .search-container {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        margin: 2rem;
    }

    .search-input {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .search-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .stat {
        min-width: 120px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .action-buttons {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }

    .action-buttons button {
        min-width: 140px;
        padding: 0.8rem 1.5rem;
    }

    /* Hero Image */
    .hero-image {
        order: 2;
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        text-align: center;
        font-size: 1rem;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .feature {
        text-align: center;
        padding: 2rem 1rem;
    }

    .feature h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .testimonial {
        text-align: center;
        padding: 2rem 1rem;
    }

    /* Jobs Section */
    .jobs-section {
        padding: 60px 0;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jobs-section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .job-card {
        padding: 1.5rem;
    }

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

    .job-company {
        font-size: 1rem;
    }

    .job-location {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        text-align: center;
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Mobile Navigation Override - Keep Original Mobile Design */
    .mobile-menu-toggle {
        display: block !important;
        background: #0267c3;
        border: none;
        color: white;
        font-size: 1.4rem;
        padding: 0.8rem;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(2, 103, 195, 0.3);
        font-weight: bold;
    }

    /* Mobile Navigation - Original Mobile Design */
    .mobile-nav-content {
        width: 280px !important; /* Keep original mobile width */
        padding: 2rem 1.5rem !important;
    }

    .mobile-nav-close {
        font-size: 1.5rem !important;
        padding: 0.5rem !important;
        margin-bottom: 2rem !important;
    }

    .mobile-nav-links li {
        margin-bottom: 1.5rem !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .mobile-nav-links a {
        font-size: 1.1rem !important;
        padding: 0.5rem 0 !important;
    }

    .mobile-nav-links a:hover {
        padding-left: 0 !important; /* Remove hover indent on mobile */
    }

    .mobile-contact-btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        margin-top: 1rem !important;
        box-shadow: none !important;
    }

    .mobile-contact-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .mobile-menu-toggle:hover {
        background: #034ea2;
        transform: translateY(-1px);
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 30px;
    }

    .hero-text h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .search-container {
        margin-top: 1.5rem;
    }

    .stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .action-buttons {
        margin-top: 1rem;
    }

    .action-buttons button {
        min-width: 120px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Features Section */
    .features-section {
        padding: 40px 0;
    }

    .features-section h2 {
        font-size: 1.8rem;
    }

    .feature {
        padding: 1.5rem 0.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .testimonial {
        padding: 1.5rem 0.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    /* Jobs Section */
    .jobs-section {
        padding: 40px 0;
    }

    .jobs-section h2 {
        font-size: 1.8rem;
    }

    .job-card {
        padding: 1rem;
    }

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

    .job-company {
        font-size: 0.9rem;
    }

    .job-location,
    .job-type {
        font-size: 0.8rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-content {
        padding: 2rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons button {
        max-width: 240px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile Navigation Improvements */
    .mobile-nav-content {
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .mobile-nav-links {
        margin: 2rem 0;
    }

    .mobile-nav-links li {
        margin-bottom: 1rem;
    }

    .mobile-nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
    }

    .mobile-contact-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #002459;
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(2, 103, 195, 0.1);
    color: #0267c3;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #002459;
    cursor: pointer;
    float: right;
    margin-bottom: 2rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #002459;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-contact-btn {
    background: linear-gradient(90deg, #096dcb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

/* Enhanced Responsive Design */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-content {
        gap: 5rem;
    }
}

/* Large Screens */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        gap: 3rem;
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.3rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 100px 0 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .search-input {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .search-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .stats {
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .hero-img {
        max-width: 300px;
    }

    .floating-badge {
        width: 50px;
        height: 50px;
        top: 5px;
        right: 5px;
    }

    .circular-element {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
        font-size: 1.2rem;
    }

    nav {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 35px;
    }
    
    header {
        padding-top: 0.5rem;
    }
    
    /* Jobs section mobile */
    .jobs-section {
        padding: 40px 0;
    }
    
    .jobs-title {
        font-size: 1.8rem;
    }
    
    .jobs-subtitle {
        font-size: 1rem;
    }
    
    .job-card {
        padding: 1.25rem;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .job-description {
        font-size: 0.9rem;
    }
    
}

/* Extra Small Screens */
@media (max-width: 400px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .stats {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        min-width: 100px;
    }
    
    .action-buttons {
        gap: 0.5rem;
        justify-content: center;
    }

    .btn-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    button1 {
        font-size: 13px;
        padding: 0.5em 0.6em;
    }
    
    .hero-text .subtitle {
        font-size: 0.9rem;
    }
    
    .search-input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .search-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .jobs-title {
        font-size: 1.6rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .job-header {
        gap: 0.75rem;
    }
}

/* Landscape Phone Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Additional Responsive Enhancements */

/* Ensure minimum touch target sizes */
@media (pointer: coarse) {
    button, .apply-btn, .see-all-btn, .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        padding: 0.5rem;
    }
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    .mobile-nav-content {
        width: min(280px, 85vw);
    }
    
    .mobile-nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-nav-links li:last-child a {
        border-bottom: none;
    }
}

/* Flexible container for very wide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

/* Print styles */
@media print {
    .mobile-nav, .mobile-menu-toggle, .floating-badge, .circular-element {
        display: none !important;
    }
    
    header {
        position: static;
        box-shadow: none;
    }
    
    .hero {
        padding-top: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* Jobs Listing Section */
.jobs-section {
    padding: 80px 0;
    background: #f4f9fe;
}

.jobs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.jobs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002459;
    margin-bottom: 1rem;
}

.jobs-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.job-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.company-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002459;
    margin: 0;
}

.company-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.job-type {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #002459;
    margin-bottom: 0.5rem;
}

.job-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-btn {
    background: linear-gradient(90deg, #096dcb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.apply-btn:hover {
    background: #0267c3;
    transform: translateY(-2px);
}

/* Job Actions Container */
.job-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

/* View Details Button */
.view-details-btn {
    background: white;
    color: #0267c3;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #0267c3;
    transition: all 0.3s ease;
    display: inline-block;
    flex: 1;
    text-align: center;
}

.view-details-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 103, 195, 0.2);
}

.see-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    width: auto;
    max-width: 250px;
    text-align: center;
}

.see-all-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Responsive for Jobs Section */
@media (max-width: 768px) {
    .jobs-section {
        padding: 60px 0;
    }

    .jobs-title {
        font-size: 2rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .job-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.steps-side {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002459;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0267c3;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-workflow {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f4f9fe;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(2, 103, 195, 0.1);
    border: 1px solid #e0f2fe;
}

.visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.visual-label {
    font-size: 0.9rem;
    color: #0267c3;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Laptop Icon - Profile Creation */
.laptop-icon {
    position: relative;
    width: 130px;
    height: 100px;
}

.laptop-screen {
    width: 130px;
    height: 80px;
    background: white;
    border-radius: 8px 8px 0 0;
    border: 3px solid #0267c3;
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.search-interface {
    margin-bottom: 8px;
}

.search-bar-visual {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px 6px;
    border: 1px solid #e2e8f0;
}

.search-icon {
    font-size: 8px;
    color: #64748b;
}

.search-text {
    flex: 1;
    height: 2px;
    background: #cbd5e1;
    border-radius: 1px;
}

.job-results {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-result-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    background: #f8fafc;
    border-radius: 4px;
    border-left: 2px solid #3b82f6;
}

.job-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.job-dot.green {
    background: #10b981;
}

.job-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.job-name-line {
    height: 2px;
    background: #1e293b;
    border-radius: 1px;
    width: 100%;
}

.company-line {
    height: 1.5px;
    background: #64748b;
    border-radius: 1px;
    width: 70%;
}

.remote-badge {
    font-size: 5px;
    background: #dbeafe;
    color: #1e40af;
    padding: 1px 2px;
    border-radius: 2px;
    font-weight: bold;
}

.laptop-base {
    width: 140px;
    height: 8px;
    background: #0267c3;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
}

.laptop-hinge {
    width: 80px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
    margin: 2px auto 0;
}

/* Mobile App - Job Listings */
.mobile-app {
    width: 80px;
    height: 130px;
    position: relative;
}

.phone-body {
    width: 80px;
    height: 130px;
    background: white;
    border: 3px solid #0267c3;
    border-radius: 20px;
    padding: 8px 6px;
    position: relative;
    overflow: hidden;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.app-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, #096dcb 0%, #3b82f6 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 8px;
}

.search-bar {
    flex: 1;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.job-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.phone-body .job-card {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.company-dot {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.company-dot.green {
    background: #10b981;
}

.job-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.job-title-line {
    height: 3px;
    background: #1e293b;
    border-radius: 1px;
    width: 100%;
}

.company-line {
    height: 2px;
    background: #64748b;
    border-radius: 1px;
    width: 70%;
}

.remote-tag {
    font-size: 8px;
    flex-shrink: 0;
}

/* Professional Hired Success Design */
.hired-box {
    position: relative;
    width: 120px;
    height: 100px;
    background: white;
    border: 2px solid #3876c6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hired-box:hover {
    border-color: #0267c3;
    box-shadow: 0 8px 20px rgba(2, 103, 195, 0.1);
    transform: translateY(-2px);
}

.hired-box::before {
    content: '✓';
    font-size: 28px;
    color: #10b981;
    background: #f0fdf4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #dcfce7;
    font-weight: bold;
}

@keyframes successBlink {
    0%, 50% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.3;
    }
}

.hired-text {
    font-size: 14px;
    font-weight: 600;
    color: #002459;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.25px;
}



.celebration {
    display: none;
}

.celebration {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 20px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Plus and Equals Signs */
.plus-sign, .equals-sign {
    font-size: 2rem;
    color: #0267c3;
    font-weight: 700;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(2, 103, 195, 0.2);
    border: 2px solid #e0f2fe;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-side {
        padding-right: 0;
        text-align: center;
    }
    .visual-workflow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .plus-sign, .equals-sign {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-title {
        font-size: 2rem;
        text-align: center;
    }

    .step-item {
        justify-content: center;
        text-align: left;
    }

    .computer-icon {
        width: 100px;
        height: 85px;
    }

    .screen {
        width: 100px;
        height: 60px;
    }

    .phone-icon {
        width: 60px;
        height: 100px;
    }

    .phone-screen {
        width: 60px;
        height: 100px;
    }

    .people-group {
        width: 100px;
        height: 70px;
    }

    .person {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 40px 0;
    }

    .how-it-works-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .visual-workflow {
        padding: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0267c3;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.reviewer-title {
    font-size: 0.9rem;
    color: #64748b;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.2rem;
    color: #fbbf24;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.review-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.verified-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-stats .stat-item {
    text-align: center;
}

.reviews-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0267c3;
    display: block;
}

.reviews-stats .stat-label {
    color: #64748b;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-info {
        gap: 12px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .reviews-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(2, 103, 195, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(2, 103, 195, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 103, 195, 0.1);
    color: #0267c3;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 1.2rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Contact Info Styles */
.contact-info {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-info-header p {
    color: #64748b;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.phone-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.location-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.method-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-link {
    color: #0267c3;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #034ea2;
}

.contact-address {
    color: #64748b;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0267c3;
    margin-bottom: 4px;
}

.contact-stats .stat-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Form Styles */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #f1f5f9;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0267c3;
    background: white;
    box-shadow: 0 0 0 3px rgba(2, 103, 195, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 4px;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #f9fafb;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #0267c3;
}

.checkbox-label input:checked ~ .checkmark {
    background: #0267c3;
    border-color: #0267c3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    color: #64748b;
}

.submit-btn {
    background: linear-gradient(135deg, #0267c3 0%, #034ea2 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 103, 195, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon svg {
    transform: translateX(2px);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.form-note svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .contact-stats {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-methods {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .contact-method {
        padding: 20px;
        gap: 16px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .method-content h4 {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .contact-stats .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .contact-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .contact-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .contact-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        word-wrap: break-word;
    }
    
    .contact-content {
        gap: 30px;
        overflow-x: hidden;
    }
    
    .contact-info {
        overflow-x: hidden;
    }
    
    .contact-info-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-header p {
        font-size: 0.85rem;
    }
    
    .contact-methods {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
        overflow-x: hidden;
    }
    
    .method-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .method-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .method-content {
        overflow-x: hidden;
        min-width: 0;
    }
    
    .method-content h4 {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .method-content p {
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .contact-link {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-address {
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .contact-form-container {
        padding: 18px;
        border-radius: 14px;
        overflow-x: hidden;
    }
    
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group {
        overflow-x: hidden;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        gap: 8px;
        word-wrap: break-word;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .submit-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        border-radius: 10px;
        width: 100%;
    }
    
    .btn-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .form-note {
        font-size: 0.75rem;
        padding: 8px;
        word-wrap: break-word;
    }
    
    .contact-stats {
        padding: 18px;
        border-radius: 12px;
        overflow-x: hidden;
    }
    
    .contact-stats .stat-number {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .contact-stats .stat-label {
        font-size: 0.7rem;
        word-wrap: break-word;
    }
}

/* Extra Small Screens (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .contact-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .contact-method {
        padding: 14px;
        gap: 10px;
    }
    
    .method-icon {
        width: 32px;
        height: 32px;
    }
    
    .method-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-form-container {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .contact-stats {
        padding: 15px;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #0267c3;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0267c3;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #0267c3;
}

/* Responsive Design for Contact and Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0267c3 0%, #034ea2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 103, 195, 0.3);
    outline: none;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #034ea2 0%, #002459 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 103, 195, 0.5);
}

.back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    pointer-events: none;
}

/* Mobile styles for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Enhanced back to top button - always visible for debugging */
.back-to-top {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    background: #ff0000 !important; /* Red background for debugging */
    z-index: 99999 !important;
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    display: flex !important;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0267c3 0%, #034ea2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Active navigation button */
.active-nav {
    background: linear-gradient(135deg, #0267c3 0%, #034ea2 100%) !important;
    color: white !important;
}

/* Mobile responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* Alert/Popup System */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.alert-overlay.show {
    display: flex;
}

.alert-popup {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    min-width: 350px;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.alert-overlay.show .alert-popup {
    transform: scale(1);
    opacity: 1;
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-icon.success {
    color: #27ae60;
}

.alert-icon.error {
    color: #e74c3c;
}

.alert-icon.warning {
    color: #f39c12;
}

.alert-icon.info {
    color: #3498db;
}

.alert-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.alert-message {
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.alert-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.alert-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.alert-btn.primary {
    background: linear-gradient(135deg, #0267c3 0%, #034ea2 100%);
    color: white;
}

.alert-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 103, 195, 0.3);
}

.alert-btn.secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.alert-btn.secondary:hover {
    background: #d5dbdb;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #3498db;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #27ae60;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.warning {
    border-left-color: #f39c12;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.toast-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form Status Styles */
.form-status {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.form-status.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-left: 4px solid #047857;
}

.form-status.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-left: 4px solid #b91c1c;
}

.form-status.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-left: 4px solid #1d4ed8;
}

.close-status {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-status:hover,
.close-status:focus {
    opacity: 1;
}

.status-text {
    padding-right: 30px;
    font-weight: 500;
}

.status-progress {
    height: 3px;
    background: rgba(255,255,255,0.3);
    margin-top: 10px;
    border-radius: 2px;
    overflow: hidden;
}

.status-progress::after {
    content: '';
    display: block;
    height: 100%;
    background: rgba(255,255,255,0.8);
    width: 100%;
    transform: translateX(-100%);
    animation: progressBar 6s linear forwards;
}

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

@keyframes progressBar {
    to {
        transform: translateX(0);
    }
}