:root {
    --primary: #0A3A6E;
    --secondary: #3B9CD9;
    --accent: #1E5A8E;
    --accent-warm: #FF6B35;
    --dark: #121212;
    --light: #F4F7FA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --gradient: linear-gradient(135deg, #0A3A6E 0%, #3B9CD9 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --frost-gradient: linear-gradient(135deg, #0A3A6E 0%, #3B9CD9 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography Adjustments */
h1 {
    font-size: 48px;
    letter-spacing: -1px;
}

h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.8;
}

/* Buttons - Enhanced */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(10, 58, 110, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 58, 110, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Navigation - Enhanced */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: var(--white);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 97px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Oswald', sans-serif;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

nav.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--secondary) !important;
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

nav.scrolled .hamburger {
    color: var(--primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-phone:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

nav.scrolled .nav-phone {
    color: var(--primary);
    background: var(--light);
    border-color: transparent;
}

nav.scrolled .nav-phone:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Hero Section - Enhanced */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
    padding-top: 100px;
    /* Space for fixed nav */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--white);
    animation: slideInDown 0.8s ease-out;
}

.hero-content h1 {
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    font-size: 52px;
}

.hero-content h1 span {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit;
    display: inline;
    margin-bottom: 0;
    letter-spacing: inherit;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-tag {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--white);
}

/* Hero Form - Enhanced */
.hero-form {
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

form input[type="hidden"] {
    display: none;
}

#contactForm,
#homeContactForm,
#careerForm,
#mainContactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.form-group {
    margin-bottom: 0;
}

/* Full width blocks */
#mainContactForm .form-group,
#mainContactForm .btn,
#mainContactForm #formMessage {
    width: 100%;
    grid-column: auto !important;
}

.form-row .form-group {
    width: auto;
    grid-column: auto !important;
}

#homeFormMessage {
    grid-column: span 2 !important;
    white-space: normal;
    /* Allow wrapping */
    padding: 10px 20px !important;
    margin-top: 15px !important;
    text-align: center;
    position: relative;
    /* Ensure it stays in flow */
}

.form-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    max-width: 420px;
    margin-left: auto;
}

.form-card h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}

.form-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 25px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.form-card #homeContactForm input,
.form-card #homeContactForm select,
.form-card #homeContactForm textarea {
    color: var(--white) !important;
}

.form-card #homeContactForm select option {
    color: var(--text-main) !important;
}

.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
    color: var(--white);
}

.form-group select option {
    background: var(--white);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(59, 156, 217, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 14px;
}

/* Section Common */
section {
    padding: 100px 0;
}

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

.section-tag {
    color: var(--primary);
    opacity: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Tag Alignment Utility Classes */
.tag-center .section-tag::after,
.section-header .section-tag::after,
.section-intro .section-tag::after,
.text-center .section-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.tag-left .section-tag::after {
    left: 0 !important;
    transform: none !important;
}

.section-title {
    margin-bottom: 15px;
    font-size: 40px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Enhanced */
.about {
    background: var(--white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 450px;
    background-image: url('../images/about-warehouse.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 58, 110, 0.1) 0%, rgba(59, 156, 217, 0.1) 100%);
}

.about-content h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    background: var(--light);
    transition: var(--transition);
}

.about-feature:hover {
    background: #E8F0F8;
    transform: translateX(5px);
}

.about-feature-icon {
    width: 35px;
    height: 35px;
    background: var(--frost-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    color: var(--text-main);
}

/* Capabilities Matrix - Enhanced */
.capabilities {
    background: var(--light);
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.capability-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary), transparent);
    opacity: 0.1;
    border-radius: 50%;
    transition: var(--transition);
}

.capability-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-left-color: var(--accent-warm);
}

.capability-card:hover::before {
    right: -30px;
    top: -30px;
}

.capability-label {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.capability-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.capability-card p {
    color: var(--text-muted);
}

/* Services Boxes - Enhanced */
.service-boxes {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: var(--white);
}

.service-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: var(--frost-gradient);
    color: var(--white);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(10, 58, 110, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(59, 156, 217, 0.35);
}

.service-box:hover::before {
    top: -25%;
    right: -25%;
}

.service-box h3 {
    color: var(--white);
    margin: 20px 0 10px;
    position: relative;
    z-index: 1;
}

.service-box-icon {
    font-size: 48px;
    position: relative;
    z-index: 1;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 11px 26px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.learn-more-btn:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Industries Section - Enhanced */
.industries {
    background: var(--white);
    padding: 100px 0;
}

.industry-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.industry-img {
    height: 100%;
    width: 100%;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(10, 58, 110, 0.95) 0%, transparent 100%);
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 22px;
}

.industry-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

/* Trust/Stats Section - Enhanced */
.trust {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 156, 217, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-stat {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.trust-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.trust-stat h3 {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.trust-stat-sm h3 {
    font-size: 28px;
}

.trust-stat p {
    opacity: 0.9;
    font-size: 14px;
}

.certifications-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.certifications-display h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.cert-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cert-item h4 {
    color: var(--white);
    font-size: 18px;
    margin: 12px 0 6px;
}

.cert-logo-img {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cert-logo-img img {
    max-height: 100%;
    max-width: 100%;
}

.cert-item p {
    font-size: 12px;
    opacity: 0.85;
    color: var(--white);
}

/* FAQ Section - Enhanced */
.faq {
    background: var(--light);
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-left-color: var(--secondary);
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item:hover .faq-question {
    background: var(--light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-icon {
    transition: var(--transition);
    font-weight: bold;
}

/* Footer - Enhanced */
footer {
    padding: 60px 0 35px;
    background: var(--dark);
    color: var(--white);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.social-links a {
    width: 52px;
    height: 52px;
    background: #0A66C2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #0A66C2;
    font-size: 24px;
}

.social-links a:hover {
    background: #004182;
    transform: translateY(-5px);
    border-color: #004182;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.5);
}

.contact-info-footer div {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-footer i {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float - Enhanced */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* --- Inner Pages Styles --- */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--light);
}

.text-center {
    text-align: center;
}

.page-hero {
    background: linear-gradient(rgba(10, 58, 110, 0.85), rgba(10, 58, 110, 0.85)), url('../images/slider-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 40px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(59, 156, 217, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-hero p {
    font-size: 18px;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-breadcrumb {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* About Detailed */
.about-intro {
    background: var(--white);
}

.about-grid-revamped {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-content span {
    color: var(--primary);
    position: relative;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-image-side {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(59, 156, 217, 0.35);
    z-index: 5;
}

.experience-badge span {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    margin: 8px 0 0;
    text-transform: uppercase;
    font-weight: 600;
}

/* Company Profile */
.company-profile {
    background: var(--light);
}

.profile-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.profile-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* Tech Highlights */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.tech-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
}

.philosophy-content {
    background: linear-gradient(135deg, var(--light) 0%, rgba(59, 156, 217, 0.05) 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
}

.philosophy-content h3 {
    margin-bottom: 25px;
    font-size: 28px;
}

.philosophy-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Mission & Vision Blocks */
.mission-vision-blocks {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}

.mission-block,
.vision-block {
    flex: 1;
    min-width: 50%;
    padding: 100px 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-block {
    background: var(--primary);
}

.mission-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-block {
    background: #0d47a1;
}

.vision-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.block-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.mission-block .block-content {
    margin-left: auto;
}

.vision-block .block-content {
    margin-right: auto;
}

.tag-white {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
}

.mission-vision-blocks h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-vision-blocks ul {
    list-style: none;
    margin: 30px 0;
}

.mission-vision-blocks li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mission-vision-blocks i {
    color: var(--secondary);
    margin-top: 5px;
}

.summary-text {
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 25px;
}

/* Services Detailed */
.services-detail {
    background: var(--white);
}

.service-item-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

.service-item-row.reverse {
    flex-direction: row-reverse;
}

.service-item-content {
    flex: 1;
}

.service-item-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-item-image img {
    width: 100%;
    display: block;
}

/* Contact Page Refinement */
.contact-methods-list {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-method i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(10, 58, 110, 0.2);
}

.contact-method h4 {
    margin-bottom: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--primary);
}

.contact-method p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Contact Form Polish */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #fdfdfd;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(59, 156, 217, 0.1);
    background: #fff;
}

.feature-list {
    list-style: none;
    margin: 15px 0 25px;
}

.feature-list li {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 16px;
    padding: 12px 10px;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 6px;
}

.feature-list li:hover {
    background: var(--light);
    padding-left: 15px;
}

.feature-list .feature-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.feature-list i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-list .feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Careers */
.why-career {
    background: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.openings {
    background: var(--light);
}

.job-list {
    margin-top: 40px;
}

.job-card {
    background: var(--white);
    padding: 25px 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.job-card:hover {
    box-shadow: var(--shadow);
    border-left-color: var(--secondary);
    transform: translateX(5px);
}

.job-info h3 {
    margin-bottom: 5px;
}

.job-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.apply-section {
    background: var(--white);
}

.apply-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.apply-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.apply-info {
    position: relative;
    z-index: 1;
}

.apply-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-detail i {
    font-size: 24px;
    color: var(--secondary);
}

.apply-form-wrapper {
    position: relative;
    z-index: 1;
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .form-row defined globally for consistency */

.career-form input,
.career-form select,
.career-form textarea {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.career-form select option {
    background: var(--white);
    color: var(--text-main);
}

.career-form input::placeholder,
.career-form textarea::placeholder {
    color: var(--text-muted);
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(59, 156, 217, 0.2);
}

/* Blog */
.blog-grid {
    background: var(--white);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-text {
    padding: 30px;
}

.blog-meta {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.blog-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: var(--secondary);
    gap: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination a {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

nav .nav-links a.active {
    color: var(--secondary);
    font-weight: 700;
}

/* Cert Footnote */
.cert-footnote {
    background: var(--light);
    text-align: center;
}

.cert-footnote .btn-outline {
    margin-top: 30px;
    border-color: var(--primary);
    color: var(--primary);
}



/* Compliance Parallax Section */
.compliance-parallax {
    /* Parallax effect like w3schools */
    background-image: linear-gradient(rgba(10, 58, 110, 0.6), rgba(10, 58, 110, 0.6)), url('../images/compliance-parallax-bg.webp');
    min-height: 480px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--white);
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-white {
    color: var(--white) !important;
}

/* Mission & Vision Heading Improvements */
.mission-vision-blocks h2 {
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mission-vision-blocks .section-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 2px;
}

.mission-block,
.vision-block {
    transition: var(--transition);
}

.mission-block:hover,
.vision-block:hover {
    filter: brightness(1.05);
}

.summary-text {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Blog Detail Page Layout */
.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.post-content-main {
    font-size: 16px;
    line-height: 1.8;
}

.post-content-main p {
    margin-bottom: 25px;
    color: var(--text-main);
}

.post-content-main h3 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.post-meta {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
}

.post-tags .tag {
    display: inline-block;
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
    color: var(--secondary);
    font-weight: 600;
}

/* Sidebar Styling */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.sidemenu {
    list-style: none;
}

.sidemenu li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.sidemenu li:last-child {
    border-bottom: none;
}

.sidemenu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.sidemenu a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.quote-widget {
    background: var(--frost-gradient);
    color: var(--white);
    border: none;
}

.quote-widget h4,
.quote-widget p {
    color: var(--white) !important;
}

.quote-widget h4 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {

    .section-padding,
    .about,
    .capabilities,
    .service-boxes,
    .industries,
    .trust,
    .faq {
        padding: 60px 0;
    }

    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .about-features {
        gap: 10px;
        margin-top: 20px;
    }

    .about-feature {
        padding: 10px;
    }

    .capabilities-grid {
        gap: 15px;
    }

    .capability-card {
        padding: 25px;
        flex: 1 1 100%;
    }

    .service-box {
        padding: 30px 20px;
    }

    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* Job Details Expansion */
.job-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.job-details.active {
    display: block;
}

.job-details h4 {
    color: var(--primary);
    font-size: 16px;
    margin: 15px 0 8px;
    font-family: 'Oswald', sans-serif;
}

.job-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.job-details li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
    line-height: 1.6;
}

.view-details-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    padding: 0;
    transition: var(--transition);
    text-decoration: underline;
}

.view-details-btn:hover {
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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