/* General Body and Container Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #f0f0f0;
    overflow-x: hidden;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header and Navigation Styles */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

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

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

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #5b86e5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul li a:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 8px;
    padding: 10px 0;
    animation: fadeInDown 0.3s ease-out;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

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

.dropdown-content a {
    color: #f0f0f0;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(91, 134, 229, 0.1));
    color: #00d4ff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section - Carousel */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 600%; /* 6 slides (3 original + 3 duplicates) */
    height: 100%;
    animation: slideContinuous 15s linear infinite;
    will-change: transform;
}

.carousel-slide {
    width: 16.666%; /* 100% / 6 slides */
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

@keyframes slideContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move half way (3 slides) to loop seamlessly */
    }
}

/* Pause animation on hover */
.carousel-container:hover .carousel-slides {
    animation-play-state: paused;
}

/* Smooth transition for manual navigation */
.carousel-slides.manual-nav {
    animation: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    animation: fadeInUp 1.2s ease-out;
}

.carousel-content h1 {
    font-size: 4.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #00d4ff, #5b86e5, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, glow 3s ease-in-out infinite;
}

.carousel-content p {
    font-size: 1.5em;
    color: #f0f0f0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.carousel-btn {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    font-size: 2em;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.carousel-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #00d4ff;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.indicator:hover {
    background: rgba(0, 212, 255, 0.7);
    transform: scale(1.2);
}

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

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.about-us .container {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-us .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%, rgba(91, 134, 229, 0.05) 100%);
    pointer-events: none;
}

.about-us .container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.about-us h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 1;
}

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

.about-us h2 {
    font-size: 3em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease-out;
    position: relative;
    z-index: 1;
}

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

.about-us p {
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: #d0d0d0;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(26, 26, 46, 0.9));
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.service-item {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both, float 6s ease-in-out infinite;
    cursor: pointer;
    transform-style: preserve-3d;
}

.service-item:hover {
    animation-play-state: paused;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.03) rotateY(2deg);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 
                0 0 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
    background: rgba(26, 26, 46, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(-20deg);
    }
    60% {
        transform: translateY(-10px) scale(1.05) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(0, 212, 255, 0.3);
    }
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

.service-item h4 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-item:hover h4 {
    color: #5b86e5;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.service-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #d0d0d0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-item:hover p {
    color: #f0f0f0;
}

/* Individual Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 52, 96, 0.9), rgba(26, 26, 46, 0.9));
    position: relative;
}

.service-detail-section:nth-child(even) {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
}

.service-detail-section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-detail-text {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.service-detail-text::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.service-detail-text h3 {
    color: #00d4ff;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-detail-text h4 {
    color: #5b86e5;
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-detail-text p {
    color: #d0d0d0;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.service-detail-text ul li {
    color: #d0d0d0;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.service-detail-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.service-detail-text ul li:hover {
    color: #f0f0f0;
    padding-left: 35px;
}

.service-detail-text ul li:hover::before {
    color: #5b86e5;
    transform: scale(1.2);
}

/* Industry Solutions Section */
.industry-solutions-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.9));
}

.industry-solutions-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.industry-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(91, 134, 229, 0.1));
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both, float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.industry-item:hover {
    animation-play-state: paused;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.industry-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.industry-item:hover::before {
    left: 100%;
}

.industry-item:hover::after {
    opacity: 1;
}

.industry-item:nth-child(1) { animation-delay: 0.1s; }
.industry-item:nth-child(2) { animation-delay: 0.2s; }
.industry-item:nth-child(3) { animation-delay: 0.3s; }
.industry-item:nth-child(4) { animation-delay: 0.4s; }
.industry-item:nth-child(5) { animation-delay: 0.5s; }
.industry-item:nth-child(6) { animation-delay: 0.6s; }

.industry-item:hover {
    transform: translateY(-12px) scale(1.08) rotateX(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(91, 134, 229, 0.25));
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4),
                0 0 30px rgba(0, 212, 255, 0.2);
}

.industry-item h4 {
    color: #f0f0f0;
    margin: 0;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.industry-item:hover h4 {
    color: #00d4ff;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Careers Section */
.careers-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 52, 96, 0.9), rgba(26, 26, 46, 0.9));
    position: relative;
}

.careers-section h2 {
    font-size: 3em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: #d0d0d0;
    padding: 0 20px;
}

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

.career-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both, float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    text-align: left;
}

.career-card:hover {
    animation-play-state: paused;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.career-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.career-card:hover::before {
    left: 100%;
}

.career-card:hover::after {
    opacity: 1;
}

.career-card:nth-child(1) { animation-delay: 0.1s; }
.career-card:nth-child(2) { animation-delay: 0.2s; }
.career-card:nth-child(3) { animation-delay: 0.3s; }
.career-card:nth-child(4) { animation-delay: 0.4s; }
.career-card:nth-child(5) { animation-delay: 0.5s; }
.career-card:nth-child(6) { animation-delay: 0.6s; }

.career-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(2deg);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 
                0 0 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
    background: rgba(26, 26, 46, 0.8);
}

.career-card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.career-card:hover h3 {
    color: #5b86e5;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.career-location {
    color: #5b86e5;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
}

.career-description {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.career-card:hover .career-description {
    color: #f0f0f0;
}

.career-requirements {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
}

.career-requirements li {
    color: #d0d0d0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.career-requirements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.career-card:hover .career-requirements li {
    color: #f0f0f0;
    padding-left: 30px;
}

.career-card:hover .career-requirements li::before {
    color: #5b86e5;
    transform: translateX(5px);
}

.career-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(91, 134, 229, 0.2));
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1em;
}

.career-apply-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(91, 134, 229, 0.3));
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    color: #5b86e5;
}

.careers-cta {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.careers-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.careers-cta h3 {
    color: #00d4ff;
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.careers-cta p {
    color: #d0d0d0;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    text-align: center;
    position: relative;
}

.contact-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    perspective: 1000px;
}

.contact-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both, float 6s ease-in-out infinite;
    cursor: pointer;
    transform-style: preserve-3d;
}

.contact-card:hover {
    animation-play-state: paused;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 0;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.contact-card:hover::before {
    opacity: 1;
    transform: scale(1.3);
}

.contact-card:hover::after {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(-2deg);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 
                0 0 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
    background: rgba(26, 26, 46, 0.8);
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }
.contact-card:nth-child(5) { animation-delay: 0.5s; }

.contact-card h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-card p {
    margin: 8px 0;
    color: #d0d0d0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-card a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-card a:hover {
    color: #5b86e5;
    text-decoration: underline;
}

.map-section {
    margin: 60px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.map-section h3 {
    font-size: 2em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00d4ff, #5b86e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.google-map {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: none;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover .google-map {
    filter: brightness(1) contrast(1.2);
}

.map-link {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1em;
}

.map-button:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.map-button svg {
    transition: transform 0.3s ease;
}

.map-button:hover svg {
    transform: translateX(3px);
}

.email-info {
    margin-top: 40px;
    font-size: 1.2em;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInUp 1s ease-out 0.5s both, borderGlow 3s ease-in-out infinite;
}

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

.email-info:hover::before {
    left: 100%;
}

.email-info:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background: rgba(26, 26, 46, 0.8);
}

.email-info p {
    margin: 15px 0;
    color: #f0f0f0;
}

.email-info p:first-child {
    color: #00d4ff;
    font-weight: 600;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.95), rgba(26, 26, 46, 0.95));
    color: #fff;
    padding: 60px 0 30px;
    font-size: 0.95em;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h4 {
    color: #00d4ff;
    margin-bottom: 25px;
    font-size: 1.3em;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #5b86e5);
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

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

.footer-content ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-content ul li a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-contact-info p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-contact-info strong {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 30px;
    color: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .carousel-content h1 {
        font-size: 2.5em;
    }
    
    .carousel-content p {
        font-size: 1.1em;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
        padding: 0 15px;
    }
    
    .carousel-nav {
        padding: 0 15px;
    }
    
    .google-map {
        height: 350px;
    }
    
    .map-section h3 {
        font-size: 1.5em;
    }
    
    .about-us h2,
    .services-section h2,
    .service-detail-section h2,
    .industry-solutions-section h2,
    .careers-section h2,
    .contact-section h2 {
        font-size: 2em;
    }
    
    .service-detail-text {
        padding: 30px 20px;
    }
    
    .service-detail-text h3 {
        font-size: 1.5em;
    }
    
    .service-detail-text h4 {
        font-size: 1.2em;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .careers-cta {
        padding: 30px 20px;
    }
    
    .careers-cta h3 {
        font-size: 1.5em;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .main-nav ul li a {
        padding: 8px 10px;
        font-size: 0.9em;
    }
}
