/* --- Modern & Stylish Project Card Styles --- */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0;
}

.project-card {
    display: flex;
    background: #111;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    min-height: 260px;
    border: 1.5px solid #222;
    position: relative;
}
.project-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.project-image {
    flex: 0 0 340px;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 200px;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1);
    background: #000;
}
.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-content {
    flex: 1;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
}
.project-content h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    position: relative;
}
.project-content h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #fff;
    margin-top: 8px;
    border-radius: 2px;
}
.project-content p {
    color: #e0e0e0;
    margin-bottom: 24px;
    font-size: 1.13rem;
    line-height: 1.7;
}
.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.project-tags span {
    background: #fff;
    color: #111;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.project-tags span:hover {
    background: #111;
    color: #fff;
    border: 1.5px solid #fff;
}

@media (max-width: 900px) {
    .projects-grid {
        gap: 28px;
        padding: 16px 0;
    }
    .project-card {
        flex-direction: column;
        min-width: 0;
        max-width: 98vw;
        margin: 0 auto;
    }
    .project-image {
        min-height: 180px;
        flex: 0 0 180px;
    }
    .project-content {
        padding: 28px 18px 18px 18px;
    }
    .project-content h3 {
        font-size: 1.3rem;
    }
}
/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --text-color: #ffffff;
    --background-color: #ffffff;
    --nav-height: 80px;
    --border-radius: 10px;
    --transition-speed: 0.3s;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-transform: translateY(-5px);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Navigation Styles */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: #000; /* Solid black background */
    border-radius: var(--border-radius);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    border: 1px solid #222; /* Subtle border */
    transition: all var(--transition-speed);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: none;
    filter: none;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed), transform var(--transition-speed);
    position: relative;
    text-shadow: none;
    filter: none;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    transform: scale(1.1); /* Slight zoom effect */
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: rgba(0, 0, 0, 0.98);
    min-width: 280px;
    border-radius: 15px;
    padding: 15px 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, 0.98);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-shadow: none;
    filter: none;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #fff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.08);
    padding-left: 30px;
    color: #fff;
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

/* Add icons to dropdown items */
.dropdown-content a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #fff;
}

.dropdown-content a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Landing Section */
.landing-section {
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.landing-content {
    max-width: 50%;
    padding-left: 10%;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

.landing-content h1 {
    font-size: 4.3rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 800;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.taglines {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.taglines p {
    font-size: 1.5rem;
    margin: 10px 0;
    opacity: 0.9;
    font-weight: 500;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 0.2;
        transform: translateX(0);
    }
}

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

/* Update button styles for landing section */
.landing-section .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.landing-section .btn:hover::before {
    width: 100%;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
}

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

.btn:hover {
    transform: var(--hover-transform);
    box-shadow: var(--card-shadow);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.about-section .section-title {
    font-size: 2.5rem;
    color: #020303;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #111213, #808181);
    border-radius: 2px;
}

.about-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 20px;
}

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

.about-text {
    padding-right: 30px;
}

.about-description .highlight-text {
    font-size: 1.2rem;
    color: #090b0e;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #0d0e0f;
}

.service-list li i {
    color: #020202;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

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

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #070707, #f9faf9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #040505;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.about-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-cta .btn-primary {
    background: linear-gradient(135deg, #070707, #737473);
    border: none;
}

.about-cta .btn-outline {
    border: 2px solid #000000;
    color: #0c0c0c;
}

.about-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        gap: 15px;
    }

    .about-cta .btn {
        width: 100%;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 100px 0;
    background: #f0f2f5;
}

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

.projects-section .section-title {
    font-size: 2.8rem;
    color: #010202;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.projects-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #0a0a0a, #b6b6b6);
    border-radius: 2px;
}

.projects-section .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 20px;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.project-card {
    display: flex;
    background: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 280px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0));
    z-index: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.project-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.project-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.project-card:hover .project-content h3::after {
    width: 100px;
}

.project-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-tags span {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card .btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project-card .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-card .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        height: auto;
    }

    .project-image {
        flex: 0 0 250px;
    }

    .project-content {
        padding: 25px;
    }

    .project-content h3 {
        font-size: 1.5rem;
    }

    .project-content p {
        font-size: 1rem;
    }

    .project-tags span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #08080b, #535354);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-video-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

.service-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #030304, #727272);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.service-icon i {
    font-size: 24px;
    color: #ffffff;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.service-content p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .btn-primary {
    margin-top: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #09090a, #5a5a5a);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.service-card .btn-primary i {
    transition: transform 0.3s ease;
}

.service-card .btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }

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

    .service-content {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
}

/* Partners Section Styles */
.partners-section {
    background: linear-gradient(135deg, #000 0%, #fff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partner-card {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 8px rgba(60,72,100,0.08);
    border: 1.5px solid rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 0 16px 48px 0 rgba(0,0,0,0.25), 0 4px 24px rgba(155, 155, 155, 0.536);
    border: 2px solid #222;
    background: rgba(255,255,255,0.97);
}

.partner-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none !important;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    border-radius: 0;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.10);
    box-shadow: 0 4px 24px rgba(60,72,100,0.12);
}

.partners-track {
    display: flex;
    gap: 48px;
    padding: 32px 0;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 80px 0;
    }
    .partners-track {
        gap: 24px;
    }
    .partner-card {
        flex: 0 0 140px;
        padding: 18px 8px;
    }
    .partner-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 60px 0;
    }
    .partners-track {
        gap: 12px;
    }
    .partner-card {
        flex: 0 0 90px;
        padding: 8px 2px;
    }
    .partner-logo {
        height: 36px;
    }
}

/* Partners Section Header Override */
.partners-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.partners-section .section-title {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.partners-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* CEO's Message Section Styles */
.ceo-message-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.ceo-message-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.ceo-message-section .section-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ceo-message-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.ceo-image-wrapper {
    position: relative;
    padding: 30px;
}

.ceo-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-3deg);
    transition: all 0.4s ease;
    background: linear-gradient(45deg, #000000, #ffffff);
    padding: 8px;
}

.ceo-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
}

.ceo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 20px 40px;
    color: white;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.ceo-image:hover .ceo-image-overlay {
    transform: translateY(0);
}

.ceo-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

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

.ceo-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: linear-gradient(135deg, #000000, #ffffff);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.ceo-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.ceo-text-wrapper {
    position: relative;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.ceo-text {
    position: relative;
}

.ceo-text .message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 400;
}

.ceo-text .message-extended {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #636e72;
    margin-bottom: 35px;
    font-weight: 300;
}

.ceo-info {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.ceo-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #000000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceo-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ceo-description {
    color: #636e72;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
}

.ceo-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ceo-social .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #000000, #ffffff);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ceo-social .social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff, #000000);
    color: #000000;
}

.ceo-social .social-link i {
    font-size: 1.2rem;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .ceo-message-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ceo-message-section {
        padding: 80px 0;
    }

    .ceo-message-section .section-title {
        font-size: 2.2rem;
    }

    .ceo-text-wrapper {
        padding: 35px;
    }

    .ceo-text .message {
        font-size: 1.2rem;
    }

    .ceo-text .message-extended {
        font-size: 1rem;
    }

    .ceo-info h3 {
        font-size: 1.6rem;
    }

    .ceo-social {
        gap: 15px;
    }

    .ceo-social .social-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .ceo-image-wrapper {
        padding: 20px;
    }

    .ceo-image {
        transform: rotate(-2deg);
    }

    .ceo-image:hover {
        transform: rotate(0deg) scale(1.01);
    }
}

@media (max-width: 480px) {
    .social-links.large-links {
        gap: 10px;
        justify-content: center;
    }

    .social-links.large-links .social-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .social-links.large-links .social-link i {
        font-size: 0.9rem;
    }

    .social-links.large-links .social-link span {
        display: none;
    }
}

/* Get In Touch Section - Form and Map Styling */
.get-in-touch-section {
    background-color: #f8f9fa; /* Light background for form contrast */
    padding: 80px 0;
}

.get-in-touch-section h2 {
    color: #000000; /* Black for heading */
}

.touch-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: flex-start; /* Align items to the top */
}

.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-page-form .form-group label {
    color: #333333;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-page-form .form-group input,
.contact-page-form .form-group select,
.contact-page-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group select:focus,
.contact-page-form .form-group textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.contact-page-form .form-group input::placeholder,
.contact-page-form .form-group textarea::placeholder {
    color: #999999;
}

.contact-page-form .btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.contact-page-form .btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 750px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive for Get In Touch Section */
@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 60px 0;
    }
    .get-in-touch-section h2 {
        font-size: 2rem;
    }
    .touch-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form-container {
        padding: 30px;
    }
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }
    .contact-page-form .form-group input,
    .contact-page-form .form-group select,
    .contact-page-form .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .contact-page-form .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .location-map iframe {
        height: 300px;
    }
}

/* Modern Footer Styles */
.main-footer {
    background: #000000;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    left: unset;
    right: unset;
    margin-left: 0;
    margin-right: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section {
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent) !important;
}

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

.footer-logo img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.company-details h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #fff;
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

.company-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #000000, #ffffff);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1rem;
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff, #000000);
    color: #000000;
}

.social-link:hover i {
    color: #000000;
}

.social-link .social-label {
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: #fff !important;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff !important;
    transform: translateX(5px);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: #fff !important;
    margin-right: 10px;
    width: 20px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #ffffff !important;
    border: none;
    border-radius: 5px;
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e0e0e0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .social-link i {
        font-size: 0.9rem;
    }

    .social-link .social-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 8px;
        justify-content: center;
    }

    .social-link {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .social-link i {
        font-size: 0.8rem;
    }

    .social-link .social-label {
        display: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.modal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

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

.modal .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.modal .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.modal .btn-primary:hover::before {
    left: 100%;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal h2 {
        font-size: 1.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
}

.mobile-menu-btn i {
    font-size: 24px;
    color: #fff;
    transition: transform var(--transition-speed);
}

.mobile-menu-btn:hover i {
    transform: scale(1.2);
}

/* Mobile styles moved to responsive.css */

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Footer: force all text, links, and icons to white, remove blue */
.footer-section h3,
.footer-links a,
.footer-links a i,
.contact-details p,
.contact-details i,
.newsletter h4,
.newsletter-form input,
.newsletter-form input::placeholder,
.newsletter-form button,
.footer-bottom p,
.footer-bottom-links a,
.social-link i {
    color: #ffffff !important;
    text-shadow: none;
    filter: none;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background: #ffffff !important;
    color: #000000 !important;
}

.newsletter-form button:hover {
    background: #e0e0e0 !important;
}

.footer-section,
.footer-content {
    background: transparent !important;
}

.contact-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6ffed;
    color: #218838;
    border: 1px solid #b2f5c2;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 18px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(34,197,94,0.08);
    transition: opacity 0.3s;
}

.contact-success-message i {
    font-size: 1.5rem;
    margin-right: 8px;
    color: #28a745;
}

/* Modern Join Our Team Section Styles */
.modern-careers-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px 0;
}
.careers-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #6a82fb 0%, #fc5c7d 100%);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}
.modern-careers-section .container {
  position: relative;
  z-index: 2;
}

.modern-careers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.modern-career-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(80, 80, 180, 0.10), 0 1.5px 6px rgba(252, 92, 125, 0.08);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  width: 320px;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px 24px 24px;
  position: relative;
  overflow: hidden;
}
.modern-career-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(80, 80, 180, 0.18), 0 3px 12px rgba(252, 92, 125, 0.12);
}

.modern-career-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.modern-career-icon {
  background: linear-gradient(135deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 18px;
  box-shadow: 0 2px 8px rgba(106,130,251,0.12);
}
.career-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #2d2d2d;
}
.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-top: 2px;
  margin-left: 2px;
  letter-spacing: 0.03em;
}
.badge-fulltime {
  background: #6a82fb;
  color: #fff;
}
.badge-internship {
  background: #fc5c7d;
  color: #fff;
}
.career-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.job-description {
  color: #444;
  font-size: 1rem;
  margin-bottom: 16px;
}
.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.98rem;
  color: #6a6a6a;
  margin-bottom: 18px;
}
.career-footer {
  margin-top: auto;
}
.modern-apply-btn {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(106,130,251,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.modern-apply-btn:hover {
  background: linear-gradient(90deg, #fc5c7d 0%, #6a82fb 100%);
  box-shadow: 0 4px 16px rgba(252, 92, 125, 0.13);
  transform: scale(1.04);
}
.modern-explore-more-container {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.modern-explore-btn {
  background: #fff;
  color: #fc5c7d !important;
  border: 2px solid #fc5c7d;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 30px;
  box-shadow: 0 2px 8px rgba(252, 92, 125, 0.08);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.modern-explore-btn:hover {
  background: linear-gradient(90deg, #fc5c7d 0%, #6a82fb 100%);
  color: #fff !important;
  border: 2px solid #6a82fb;
}

@media (max-width: 900px) {
  .modern-careers-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .modern-career-card {
    width: 100%;
    min-width: 0;
    max-width: 400px;
  }
}

/* Join Our Team Modern Section (like About Us) */
.join-team-modern-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.join-team-modern-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  color: #fff;
  padding: 3rem 2rem 2rem 2rem;
}
.join-team-modern-left {
  flex: 1 1 320px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join-team-modern-right {
  flex: 1 1 320px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.join-team-jobs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.join-team-job-card {
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 240px;
  background: rgba(30,30,32,0.98);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid #bdbdbd;
  transition: transform 0.2s, box-shadow 0.2s;
}
.join-team-job-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(189,189,189,0.15);
}
.join-team-job-card .mv-icon {
  font-size: 2.2rem;
  color: #fff;
  margin-right: 0.5rem;
  background: #232326;
  border-radius: 50%;
  padding: 0.3rem 0.5rem;
}
.join-team-job-card .mv-content h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: #bdbdbd;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.join-team-job-card .badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  margin-left: 6px;
  letter-spacing: 0.03em;
}
.join-team-job-card .badge-fulltime {
  background: #6a82fb;
  color: #fff;
}
.join-team-job-card .badge-internship {
  background: #fc5c7d;
  color: #fff;
}
.join-team-job-card .mv-content p {
  margin: 0;
  color: #e0e0e0;
  font-size: 1rem;
  opacity: 0.92;
}
.join-team-job-card .job-details {
  display: inline-block;
  font-size: 0.95rem;
  color: #bdbdbd;
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .join-team-modern-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .join-team-modern-right {
    align-items: flex-start;
    margin-top: 1.5rem;
  }
  .join-team-jobs-grid {
    justify-content: flex-start;
    gap: 1rem;
  }
}

/* Join Our Team Brief Section - Clean White Version */
.join-brief-section {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px 0 rgba(80,80,180,0.08);
  padding: 64px 0 56px 0;
  margin: 0 0 2.5rem 0;
  overflow: hidden;
}
.join-brief-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.join-brief-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.join-brief-section .section-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-brief-desc {
  color: #444;
  font-size: 1.18rem;
  margin-bottom: 2.1rem;
  line-height: 1.8;
  font-weight: 500;
}
.join-brief-btn {
  font-size: 1.13rem;
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(106,130,251,0.13), 0 1.5px 6px rgba(252, 92, 125, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  z-index: 4;
}
.join-brief-btn:hover {
  background: linear-gradient(90deg, #fc5c7d 0%, #000000 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px 0 rgba(252, 92, 125, 0.18);
  transform: scale(1.04);
}

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

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 0;
    flex-shrink: 0;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.social-media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
}

.social-media-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-media-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.social-media-video iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
}

.social-media-handles {
    text-align: center;
}

.social-media-handles h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 600;
}

.social-links.large-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links.large-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.social-links.large-links .social-link i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: #000000;
    display: block;
}

.social-links.large-links .social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}



.social-links.large-links .social-link:hover i {
    transform: scale(1.1);
}

/* Facebook */
.social-links.large-links .social-link[title="Facebook"] i {
    color: #1877f2;
}
.social-links.large-links .social-link[title="Facebook"]:hover {
    background: #1877f2;
    color: #ffffff;
}
.social-links.large-links .social-link[title="Facebook"]:hover i {
    color: #ffffff;
}

/* Twitter/X */
.social-links.large-links .social-link[title="Twitter"] i {
    color: #000000;
}
.social-links.large-links .social-link[title="Twitter"]:hover {
    background: #000000;
    color: #ffffff;
}
.social-links.large-links .social-link[title="Twitter"]:hover i {
    color: #ffffff;
}

/* LinkedIn */
.social-links.large-links .social-link[title="LinkedIn"] i {
    color: #0077b5;
}
.social-links.large-links .social-link[title="LinkedIn"]:hover {
    background: #0077b5;
    color: #ffffff;
}
.social-links.large-links .social-link[title="LinkedIn"]:hover i {
    color: #ffffff;
}

/* Instagram */
.social-links.large-links .social-link[title="Instagram"] i {
    color: #e4405f;
}
.social-links.large-links .social-link[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}
.social-links.large-links .social-link[title="Instagram"]:hover i {
    color: #ffffff;
}

/* YouTube */
.social-links.large-links .social-link[title="YouTube"] i {
    color: #ff0000;
}
.social-links.large-links .social-link[title="YouTube"]:hover {
    background: #ff0000;
    color: #ffffff;
}
.social-links.large-links .social-link[title="YouTube"]:hover i {
    color: #ffffff;
}

/* GitHub */
.social-links.large-links .social-link[title="GitHub"] i {
    color: #333333;
}
.social-links.large-links .social-link[title="GitHub"]:hover {
    background: #333333;
    color: #ffffff;
}
.social-links.large-links .social-link[title="GitHub"]:hover i {
    color: #ffffff;
}

/* Responsive Design for Social Media Section */
@media (max-width: 768px) {
    .social-media-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-media-section h2 {
        font-size: 2rem;
    }
    
    .social-media-handles h3 {
        font-size: 1.5rem;
    }
    
    .social-links.large-links {
        gap: 15px;
    }
    
    .social-links.large-links .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-links.large-links .social-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-media-section {
        padding: 60px 0;
    }
    
    .social-media-section h2 {
        font-size: 1.8rem;
    }
    
    .social-media-handles h3 {
        font-size: 1.3rem;
    }
    
    .social-links.large-links {
        gap: 12px;
    }
    
    .social-links.large-links .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-links.large-links .social-link i {
        font-size: 1.2rem;
    }
}

/* ===== BLACK & WHITE PROJECT TILES ===== */

/* Loading Placeholder */
.loading-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1; /* Span full width in grid */
}

.loading-placeholder p {
    margin: 0;
    font-weight: 500;
}

/* Maneuver Content Container */
.maneuver-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Use existing projects-grid for dynamic content */
.maneuver-content .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 0;
}

/* Maneuver Stats - Black & White */
.maneuver-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0 60px 0;
    flex-wrap: wrap;
}

.maneuver-stat {
    text-align: center;
    position: relative;
}

.maneuver-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 8px;
    line-height: 1;
}

.maneuver-stat .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Professional Responsive Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px;
}

/* Professional 3D Project Tiles */
.project-tile {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: none;
    border-radius: 15px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    height: auto;
    min-height: 320px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000, #333333, #000000);
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

.project-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
    border-radius: 15px;
}

.project-tile:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(2deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.project-tile:hover::before {
    height: 4px;
    background: linear-gradient(90deg, #000000, #444444, #000000);
}

/* Compact Professional Header */
.project-tile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
}

.project-logo {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.project-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-tile:hover .project-logo {
    transform: translateZ(10px) scale(1.08) rotateY(5deg);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.project-tile:hover .project-logo::before {
    opacity: 1;
}

.project-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Professional 3D OEMS Logo */
.project-logo.oems-logo {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.project-logo.oems-logo::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
}

.project-tile:hover .project-logo.oems-logo {
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.project-info {
    flex: 1;
    min-width: 0;
}

.project-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.project-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* Compact Description */
.project-description {
    margin-bottom: 0;
    padding: 0 24px 16px 24px;
}

.project-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Professional 3D Project Details */
.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 20px 24px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 0 0 15px 15px;
    position: relative;
}

.project-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.project-category {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 12px;
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-tile:hover .project-category {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.project-tile:hover .project-category::before {
    left: 100%;
}

.project-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-stats span {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.9));
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.project-stats span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    transition: left 0.4s ease;
}

.project-tile:hover .project-stats span {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(248, 248, 248, 0.95));
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.project-tile:hover .project-stats span::before {
    left: 100%;
}

/* Maneuver CTA Section - Black & White */
.maneuver-cta {
    margin-top: 80px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border: none;
}

.maneuver-cta h3 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.maneuver-cta p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.maneuver-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.maneuver-cta .btn {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.maneuver-cta .btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.maneuver-cta .btn.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.maneuver-cta .btn.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Responsive Design for Black & White Tiles */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .maneuver-stats {
        gap: 40px;
    }
    
    .maneuver-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        padding: 12px;
    }
    
    .project-tile {
        min-height: 300px;
    }
    
    .project-tile-header {
        padding: 20px 20px 14px 20px;
        gap: 14px;
    }
    
    .project-logo {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    
    .project-logo img {
        width: 34px;
        height: 34px;
    }
    
    .project-name {
        font-size: 1.3rem;
    }
    
    .project-subtitle {
        font-size: 0.75rem;
    }
    
    .project-description {
        padding: 0 20px 14px 20px;
    }
    
    .project-description p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .project-details {
        padding: 14px 20px 18px 20px;
        gap: 10px;
    }
    
    .project-details::before {
        left: 20px;
        right: 20px;
    }
    
    .project-category {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .project-stats span {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .project-stats {
        justify-content: center;
    }
    
    .maneuver-cta {
        margin-top: 60px;
        padding: 40px 30px;
    }
    
    .maneuver-cta h3 {
        font-size: 2rem;
    }
    
    .maneuver-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .maneuver-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .maneuver-stats {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .maneuver-stat .stat-number {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 8px;
    }
    
    .project-tile {
        min-height: 280px;
        border-radius: 12px;
        transform-style: preserve-3d;
    }
    
    .project-tile::before {
        border-radius: 12px 12px 0 0;
    }
    
    .project-tile::after {
        border-radius: 12px;
    }
    
    .project-tile:hover {
        transform: translateY(-8px) rotateX(1deg) rotateY(1deg);
    }
    
    .project-tile-header {
        padding: 18px 18px 12px 18px;
        border-radius: 12px 12px 0 0;
        gap: 12px;
    }
    
    .project-logo {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    .project-logo img {
        width: 30px;
        height: 30px;
    }
    
    .project-tile:hover .project-logo {
        transform: translateZ(5px) scale(1.05) rotateY(3deg);
    }
    
    .project-name {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .project-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }
    
    .project-description {
        padding: 0 18px 12px 18px;
    }
    
    .project-description p {
        font-size: 0.8rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .project-details {
        padding: 12px 18px 16px 18px;
        gap: 8px;
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .project-details::before {
        left: 18px;
        right: 18px;
    }
    
    .project-category {
        padding: 4px 10px;
        font-size: 0.65rem;
        border-radius: 8px;
        align-self: flex-start;
    }
    
    .project-stats {
        gap: 6px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .project-stats span {
        padding: 3px 7px;
        font-size: 0.65rem;
        border-radius: 6px;
    }
    
    /* Professional 3D OEMS Logo Mobile */
    .project-logo.oems-logo {
        background: linear-gradient(145deg, #000000, #1a1a1a);
    }
    
    .project-tile:hover .project-logo.oems-logo {
        transform: translateZ(5px) scale(1.05) rotateY(3deg);
    }
    
    .project-icon {
        width: 40px;
        height: 40px;
    }
    
    .project-icon i {
        font-size: 1.5rem;
    }
    
    .project-name {
        font-size: 1.3rem;
    }
    
    .project-subtitle {
        font-size: 0.9rem;
    }
    
    .maneuver-cta {
        padding: 30px 20px;
    }
    
    .maneuver-cta h3 {
        font-size: 1.8rem;
    }
}

/* Hero Logo Background - Responsive Styling */
.landing-section .hero-logo-bg {
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%) scale(1.35);
    width: 55vw;
    max-width: 600px;
    min-width: 220px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
    transition: opacity 0.3s, filter 0.3s;
}

@media (max-width: 900px) {
    .landing-section .hero-logo-bg {
        width: 80vw;
        max-width: 340px;
        right: -10px;
        opacity: 0.22;
        transform: translateY(-50%) scale(1.08);
    }
}

@media (max-width: 600px) {
    .landing-section .hero-logo-bg {
        width: 90vw;
        max-width: 220px;
        right: -10px;
        opacity: 0.25;
        transform: translateY(-50%) scale(0.9);
    }
}

@media (max-width: 480px) {
    .landing-section .hero-logo-bg {
        width: 85vw;
        max-width: 180px;
        right: -5px;
        opacity: 0.15;
        transform: translateY(-50%) scale(0.8);
    }
}