/* ========== ROOT VARIABLES & RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Blue Colors */
    --primary-blue: #1e5ba8;
    --navy-blue: #0d3b66;
    --light-blue: #4a90e2;
    --accent-green: #28a745;
    --accent-orange: #ff9800;
    --accent-purple: #6f42c1;
    --accent-teal: #17a2b8;
    
    /* Neutrals */
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-300: #d1d5db;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', sans-serif;
    color: var(--neutral-800);
    background-color: #ffffff;
    line-height: 1.6;
}


/* ========== HERO SECTION ========== */
.hero {
    background-size: cover !important;
    background-position: center !important;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #fff700 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== PAGE BANNER ========== */
.page-banner {
    background-size: cover !important;
    background-position: center !important;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ========== BUTTONS ========== */
.cta-button,
.service-btn,
.apply-btn,
.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: white;
}

.service-btn,
.apply-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
}

.service-btn:hover,
.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    font-size: 16px;
    padding: 14px 40px;
    margin-top: 15px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 20px;
}

.section.stats-section {
    background-color: var(--neutral-50);
}

.section.services-section {
    background-color: white;
}

.section.why-choose-section {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
}

.section.clients-section {
    background-color: var(--neutral-50);
}

.section.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.section.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--neutral-900);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.section-text {
    font-size: 16px;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========== STATS SECTION ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--neutral-600);
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--neutral-900);
}

.service-card p {
    color: var(--neutral-700);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--light-blue);
}

/* ========== SERVICES DETAILED GRID ========== */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.detailed-service-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detailed-service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.detailed-service-card p {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========== GRADIENT ICONS ========== */
.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.gradient-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.gradient-5 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%) !important;
}

/* ========== WHY CARDS ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card .why-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.why-card p {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== CLIENT LOGOS ========== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ========== ABOUT PREVIEW ========== */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-preview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview-content h2 {
    margin-bottom: 20px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.cert-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ========== CONTACT SECTION ========== */

/* ========== FAQ SECTION ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.faq-item p {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== CAREER SECTION ========== */
.career-intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.intro-card {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateX(10px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.intro-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.intro-card p {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.job-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 18px;
    color: var(--neutral-900);
    margin: 0;
}

.job-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-description {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-detail-item {
    font-size: 13px;
    color: var(--neutral-600);
}

.application-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto 40px;
}

.application-info {
    background: linear-gradient(135deg, rgba(30, 91, 168, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.application-info h3 {
    color: var(--neutral-900);
    margin-bottom: 10px;
}

.application-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* ========== BENEFIT CARDS ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.benefit-card p {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4,
.footer-section h5 {
    color: white;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-link {
        padding: 15px 20px;
        border: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid,
    .services-grid,
    .why-grid,
    .clients-grid,
    .contact-info-grid,
    .faq-grid,
    .jobs-grid,
    .benefits-grid,
    .career-intro-cards {
        grid-template-columns: 1fr;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: auto;
        padding: 10px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .service-icon {
        font-size: 36px;
    }

    .contact-form-wrapper,
    .application-form-wrapper {
        padding: 20px;
    }
}
