/* System Single Template Styles */
:root {
    --primary-color: #00325D;
    --secondary-color: #004975;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-light: #f3f4f6;
    --white: #ffffff;
    --section-spacing: 100px;
    --blueprint-color: #00a8ff;
    --blueprint-grid: rgba(0, 168, 255, 0.1);
    --blueprint-line: rgba(0, 168, 255, 0.3);
}

/* Global Styles */
.system-single {
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
iframe{
    border: 0;
    width: 100%;
    height: 20rem;
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #b3e0ff 100%);
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
} */

/* System Image Section - Now part of hero */
.system-image-section {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    z-index: 4;
}

.system-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    margin: 0 20px;
}

/* Responsive Layout Adjustments */
@media (min-width: 1024px) {
    .hero-section {
        padding: 140px 0 180px;
    }

    .hero-content-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        max-width: 50%;
    }

    .system-image-section {
        flex: 1;
        margin: 0;
    }

    .hero-title-wrapper {
        text-align: left;
    }

    .title-decoration {
        justify-content: flex-start;
    }

    .hero-description {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 0 20px;
        margin-bottom: 2rem;
    }

    .system-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .hero-content {
        padding: 0 15px;
    }

    .hero-description-box {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .system-image-wrapper {
        padding: 15px;
    }
}

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

    .hero-description-box {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .system-image-wrapper {
        padding: 10px;
        margin: 0 15px;
    }

    .corner {
        width: 15px;
        height: 15px;
    }
}

/* Update container for hero section */
.hero-section .container {
    max-width: 1400px;
    width: 100%;
}

/* Ensure background elements scale properly */
.particles-container,
.blueprint-grid,
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles-container {
    z-index: 1;
}

.blueprint-grid {
    z-index: 2;
    background-image: 
        linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Adjust shape animations for better performance on mobile */
@media (max-width: 768px) {
    .shape {
        animation-duration: 4s;
    }
    
    .blueprint-element {
        animation-duration: 15s;
    }
    
    .shape.circle {
        width: 150px;
        height: 150px;
    }
    
    .shape.square {
        width: 100px;
        height: 100px;
    }
    
    .shape.triangle {
        border-left-width: 75px;
        border-right-width: 75px;
        border-bottom-width: 130px;
    }
}

/* Optimize animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .shape,
    .blueprint-element,
    .system-main-image {
        animation: none;
        transition: none;
    }
}

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

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid var(--blueprint-color);
    opacity: 0.3;
}

.shape.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: 10%;
    animation: floatAnimation 6s infinite ease-in-out;
}

.shape.square {
    width: 150px;
    height: 150px;
    right: 15%;
    top: 20%;
    transform: rotate(45deg);
    animation: floatAnimation 8s infinite ease-in-out reverse;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(0, 168, 255, 0.1);
    left: 20%;
    bottom: 10%;
    animation: floatAnimation 7s infinite ease-in-out 1s;
}

.blueprint-element {
    position: absolute;
    width: 150px;
    height: 150px;
}

.blueprint-element.element-1 {
    top: 15%;
    right: 10%;
    animation: rotateAnimation 20s infinite linear;
}

.blueprint-element.element-2 {
    bottom: 20%;
    left: 5%;
    animation: rotateAnimation 25s infinite linear reverse;
}

.blueprint-circle,
.blueprint-rect,
.blueprint-line {
    fill: none;
    stroke: var(--blueprint-color);
    stroke-width: 1;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.title-decoration .line {
    width: 50px;
    height: 2px;
    background: var(--blueprint-color);
}

.title-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--blueprint-color);
    border-radius: 50%;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-description-box {
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid var(--blueprint-line);
    border-radius: 15px;
    padding: 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
    position: relative;
    backdrop-filter: blur(10px);
}

.description-box::before,
.description-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--blueprint-line);
}

.description-box::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.description-box::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

/* Responsive styles for hero section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 140px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .description-box {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .shape.circle {
        width: 150px;
        height: 150px;
    }

    .shape.square {
        width: 100px;
        height: 100px;
    }

    .shape.triangle {
        border-left-width: 75px;
        border-right-width: 75px;
        border-bottom-width: 130px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 120px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .description-box {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

/* System Image Section */
.system-image-section {
    position: relative;
    margin-top: 3rem;
    padding: 0 20px;
    z-index: 4;
}

.system-image-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.image-background-props {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.prop {
    position: absolute;
    background: var(--blueprint-color);
    opacity: 0.1;
}

.prop-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.prop-2 {
    width: 150px;
    height: 3px;
    top: 50%;
    right: -30px;
    transform: rotate(45deg);
    animation: fadeInOut 3s infinite ease-in-out;
}

.prop-3 {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: 30%;
    border-radius: 10px;
    transform: rotate(45deg);
    animation: pulse 5s infinite ease-in-out 1s;
}

.prop-4 {
    width: 3px;
    height: 100px;
    top: 20%;
    left: 30px;
    animation: fadeInOut 4s infinite ease-in-out 0.5s;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.system-main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.image-container:hover .system-main-image {
    transform: scale(1.05);
}

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

.corner-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--blueprint-color);
    opacity: 0.5;
}

.corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Update responsive styles for system image */
@media (max-width: 1200px) {
    .system-image-wrapper {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .system-image-section {
        margin-top: 2rem;
    }

    .system-image-wrapper {
        max-width: 500px;
        padding: 15px;
    }

    .corner {
        width: 20px;
        height: 20px;
    }

    .prop-1 {
        width: 70px;
        height: 70px;
    }

    .prop-2 {
        width: 100px;
    }

    .prop-3 {
        width: 50px;
        height: 50px;
    }

    .prop-4 {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .system-image-section {
        margin-top: 1.5rem;
        padding: 0 15px;
    }

    .system-image-wrapper {
        padding: 10px;
    }

    .corner {
        width: 15px;
        height: 15px;
    }
}

/* Introduction Section */
.intro-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.intro-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.title-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.intro-description-wrapper {
    position: relative;
}

.description-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.box-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--blueprint-color);
    opacity: 0.3;
}

.box-decoration.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.box-decoration.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.box-decoration.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.box-decoration.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.intro-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
}

.tech-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 2px solid var(--blueprint-color);
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
    animation: pulseCircle 3s infinite;
}

.circle-2 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: -25px;
    animation: pulseCircle 3s infinite 1s;
}

.circle-3 {
    width: 70px;
    height: 70px;
    bottom: -20px;
    right: 20%;
    animation: pulseCircle 3s infinite 0.5s;
}

@keyframes pulseCircle {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* Responsive styles for intro section */
@media (max-width: 768px) {
    .description-box {
        padding: 2rem;
    }

    .intro-description {
        font-size: 1rem;
    }

    .box-decoration {
        width: 20px;
        height: 20px;
    }

    .circle-1 {
        width: 80px;
        height: 80px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .description-box {
        padding: 1.5rem;
    }

    .box-decoration {
        width: 15px;
        height: 15px;
    }
}

/* Capabilities Section */
.capabilities-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.capabilities-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.capabilities-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.capability-card {
    position: relative;
    perspective: 1000px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(var(--primary-rgb), 0.1) 0%,
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.capability-card:hover .card-glow {
    opacity: 1;
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

.hex-icon {
    width: 60px;
    height: 60px;
    position: relative;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.hex-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.capability-card:hover .hex-icon {
    color: var(--secondary-color) !important;
}

.capability-card:hover .hex-icon::before {
    transform: rotate(60deg);
}

.capability-icon {
    position: relative;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.card-content strong {
    color: var(--primary-color);
}

.card-content strong:after {
    content: ":";
    color: var(--primary-color);
}

.card-decoration {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.decoration-line {
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.capability-card:hover .decoration-line {
    transform: scaleX(1);
}

.capability-card::before,
.capability-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.capability-card::before {
    top: -50px;
    right: -50px;
    transform: scale(0);
}

.capability-card::after {
    bottom: -50px;
    left: -50px;
    transform: scale(0);
}

.capability-card:hover::before,
.capability-card:hover::after {
    transform: scale(1);
}

/* Add hover effect for cards */
@media (hover: hover) {
    .capability-card:hover .card-front {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .capability-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .capability-card {
        height: 260px;
    }

    .card-front {
        padding: 1.5rem;
    }

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

    .card-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        height: auto;
        min-height: 240px;
    }
}

/* Sub-types Section */
.sub-types-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.sub-types-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.sub-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.sub-type-card {
    position: relative;
    height: 250px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
        rgba(var(--primary-rgb), 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate3d(0, 0, 0);
}

.sub-type-card:hover .card-bg::before {
    opacity: 1;
}

.card-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.type-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.icon-svg {
    width: 100%;
    height: 100%;
}

.type-details {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-details strong {
    color: var(--primary-color);
}

.type-details strong:after {
    content: ":";
    color: var(--primary-color);
}

.hover-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-indicator .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.hover-indicator .line {
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sub-type-card:hover .hover-indicator {
    opacity: 1;
}

.sub-type-card:hover .hover-indicator .line {
    transform: scaleX(1);
}

.corner-accents .accent {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.accent.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    transform: translate(-10px, -10px);
}

.accent.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    transform: translate(10px, -10px);
}

.accent.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    transform: translate(-10px, 10px);
}

.accent.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    transform: translate(10px, 10px);
}

.sub-type-card:hover .accent {
    opacity: 0.3;
    transform: translate(0, 0);
}

/* Add data-index based colors */
.sub-type-card[data-index="1"] .type-icon { color: #2563eb; }
.sub-type-card[data-index="2"] .type-icon { color: #7c3aed; }
.sub-type-card[data-index="3"] .type-icon { color: #db2777; }
.sub-type-card[data-index="4"] .type-icon { color: #059669; }
.sub-type-card[data-index="5"] .type-icon { color: #d97706; }
.sub-type-card[data-index="6"] .type-icon { color: #dc2626; }
.sub-type-card[data-index="7"] .type-icon { color: #4f46e5; }
.sub-type-card[data-index="8"] .type-icon { color: #0891b2; }
.sub-type-card[data-index="9"] .type-icon { color: #be185d; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed var(--blueprint-color);
    border-radius: 50%;
    top: 10%;
    right: -150px;
    opacity: 0.1;
    animation: rotate 30s linear infinite;
}

.float-square {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--blueprint-color);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: rotate 25s linear infinite reverse;
}

.float-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.float-dots span {
    width: 10px;
    height: 10px;
    background: var(--blueprint-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.float-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.float-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .sub-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .sub-type-card {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .sub-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .type-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .type-details {
        font-size: 1rem;
    }

    .float-circle {
        width: 200px;
        height: 200px;
    }

    .float-square {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .sub-types-grid {
        grid-template-columns: 1fr;
    }

    .sub-type-card {
        height: auto;
        min-height: 160px;
    }

    .card-content {
        padding: 1.25rem;
    }
}

/* Features Section */
.features-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--blueprint-color) 0,
        var(--blueprint-color) 1px,
        transparent 1px,
        transparent 30px
    );
    opacity: 0.05;
    animation: moveLines 20s linear infinite;
}

.feature-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-container {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 200px;
    height: 200px;
}

.rotating-shape {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--blueprint-color);
    opacity: 0.2;
    animation: rotateShape 30s linear infinite;
}

.rotating-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    border: 2px dashed var(--blueprint-color);
    transform: translate(-50%, -50%) rotate(45deg);
}

.floating-dots {
    position: absolute;
    bottom: 100px;
    left: -50px;
    display: flex;
    gap: 20px;
}

.floating-dots span {
    width: 8px;
    height: 8px;
    background: var(--blueprint-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDot 3s infinite ease-in-out;
}

.floating-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-dots span:nth-child(3) {
    animation-delay: 1s;
}

.features-content {
    position: relative;
    z-index: 2;
}

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

.feature-item {
    position: relative;
    perspective: 1000px;
}

.feature-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.feature-item:hover .feature-inner {
    transform: translateY(-10px);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.icon-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.icon-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.feature-item:hover .icon-container {
    transform: translateY(-5px);
}

.feature-item:hover .icon-backdrop {
    transform: translate(-50%, -50%) rotate(225deg);
}

.feature-svg {
    width: 32px;
    height: 32px;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature-text strong {
    color: var(--primary-color);
}

.feature-text strong:after {
    content: ":";
    color: var(--primary-color);
}

.feature-decoration {
    position: relative;
    height: 20px;
}

.decoration-line {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.feature-item:hover .decoration-line {
    opacity: 1;
    transform: translateX(0);
}

.line-segment {
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.line-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.hover-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.corner-accent.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    transform: translate(-10px, -10px);
}

.corner-accent.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    transform: translate(10px, -10px);
}

.corner-accent.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    transform: translate(-10px, 10px);
}

.corner-accent.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    transform: translate(10px, 10px);
}

.feature-item:hover .corner-accent {
    opacity: 0.3;
    transform: translate(0, 0);
}

.highlight-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%
    );
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.feature-item:hover .highlight-bar {
    width: 80%;
}

/* Add data-index based colors */
.feature-item[data-index="1"] .icon-container { color: #2563eb; }
.feature-item[data-index="2"] .icon-container { color: #7c3aed; }
.feature-item[data-index="3"] .icon-container { color: #db2777; }
.feature-item[data-index="4"] .icon-container { color: #059669; }
.feature-item[data-index="5"] .icon-container { color: #d97706; }
.feature-item[data-index="6"] .icon-container { color: #dc2626; }
.feature-item[data-index="7"] .icon-container { color: #4f46e5; }
.feature-item[data-index="8"] .icon-container { color: #0891b2; }
.feature-item[data-index="9"] .icon-container { color: #be185d; }

@keyframes moveLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* Responsive styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .feature-inner {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .feature-inner {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .feature-svg {
        width: 28px;
        height: 28px;
    }

    .feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-inner {
        padding: 1.25rem;
    }
}

/* Equipment Section */
.equipment-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.equipment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--blueprint-grid) 1.5px, transparent 1.5px),
        linear-gradient(90deg, var(--blueprint-grid) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.equipment-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-blueprint {
    position: absolute;
    top: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
    animation: slowRotate 40s linear infinite;
}

.blueprint-svg {
    width: 100%;
    height: 100%;
}

.blueprint-circle,
.blueprint-line {
    fill: none;
    stroke: var(--blueprint-color);
    stroke-width: 1;
}

.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border: 2px solid var(--blueprint-color);
    opacity: 0.15;
}

.element.gear {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 20%;
    left: -50px;
    animation: gearRotate 20s linear infinite;
}

.element.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 2px solid var(--blueprint-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.element.circuit {
    width: 150px;
    height: 2px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-45deg);
    box-shadow: 
        0 30px 0 var(--blueprint-color),
        0 60px 0 var(--blueprint-color);
    opacity: 0.1;
}

.element.wave {
    width: 200px;
    height: 50px;
    bottom: 20%;
    left: 5%;
    border: none;
    background: repeating-linear-gradient(
        45deg,
        var(--blueprint-color) 0,
        var(--blueprint-color) 2px,
        transparent 2px,
        transparent 10px
    );
    opacity: 0.1;
    animation: waveMove 10s linear infinite;
}

.equipment-content {
    position: relative;
    z-index: 2;
}

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

.equipment-item {
    position: relative;
}

.item-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.equipment-item:hover .item-inner {
    transform: translateY(-8px) scale(1.02);
}

.item-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
}

.equipment-icon {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid currentColor;
    border-radius: 12px;
    opacity: 0.2;
    transition: transform 0.3s ease;
}

.equipment-item:hover .icon-ring {
    transform: rotate(45deg);
}

.equipment-svg {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-svg {
    transform: scale(1.1);
}

.equipment-details {
    flex-grow: 1;
}

.details-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.tech-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.indicator-dots {
    display: flex;
    gap: 4px;
}

.indicator-dots .dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    animation: blinkDot 2s infinite;
}

.indicator-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.indicator-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

.indicator-line {
    width: 30px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.equipment-item:hover .indicator-line {
    transform: scaleX(1);
}

.item-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
}

.backdrop-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at 2px 2px,
        var(--blueprint-color) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.backdrop-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(var(--primary-rgb), 0.1) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-item:hover .backdrop-glow {
    opacity: 1;
}

.connection-lines {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.line-segment {
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
}

.line-node {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
}

.equipment-item:hover .connection-lines {
    opacity: 1;
}

/* Add data-index based colors */
.equipment-item[data-index="1"] { --equipment-color: #2563eb; }
.equipment-item[data-index="2"] { --equipment-color: #7c3aed; }
.equipment-item[data-index="3"] { --equipment-color: #db2777; }
.equipment-item[data-index="4"] { --equipment-color: #059669; }
.equipment-item[data-index="5"] { --equipment-color: #d97706; }
.equipment-item[data-index="6"] { --equipment-color: #dc2626; }
.equipment-item[data-index="7"] { --equipment-color: #4f46e5; }
.equipment-item[data-index="8"] { --equipment-color: #0891b2; }
.equipment-item[data-index="9"] { --equipment-color: #be185d; }

.equipment-item[data-index] .equipment-svg { color: var(--equipment-color); }
.equipment-item[data-index] .icon-ring { border-color: var(--equipment-color); }
.equipment-item[data-index] .tech-indicator { color: var(--equipment-color); }
.equipment-item[data-index] .line-segment,
.equipment-item[data-index] .line-node { background: var(--equipment-color); }

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes waveMove {
    from { transform: translateX(0); }
    to { transform: translateX(200px); }
}

@keyframes blinkDot {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .tech-blueprint {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .item-inner {
        padding: 1.5rem;
    }

    .equipment-icon {
        width: 40px;
        height: 40px;
    }

    .details-text {
        font-size: 1rem;
    }

    .tech-blueprint {
        width: 200px;
        height: 200px;
    }

    .element.gear {
        width: 80px;
        height: 80px;
    }

    .element.wave {
        width: 150px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .item-inner {
        padding: 1.25rem;
    }
}

/* Applications Section */
.applications-section {
    padding: var(--section-spacing) 0;
    background: #ffffff;
}

.applications-content {
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.applications-grid {
    position: relative;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.applications-slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide {
    height: auto; /* Let the card determine the height */
    display: flex;
}

.application-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 500px; /* Fixed height for all cards */
    width: 100%; /* Take full width of slide */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.application-image {
    position: relative;
    height: 280px; /* Fixed height for all images */
    width: 100%;
    overflow: hidden;
    background: #f5f5f5; /* Light background for empty spaces */
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.application-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures consistent spacing */
}

.application-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 2.8em; /* Ensures consistent title height */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.application-description {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.application-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: flex-start; /* Aligns all buttons to the left */
}

.application-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.application-link:hover .link-icon {
    transform: translateX(4px);
}

/* Slider Navigation */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #00325d85;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-button:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slider-button svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .application-card {
        height: 480px;
    }

    .application-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .application-card {
        height: 460px;
    }

    .application-image {
        height: 240px;
    }

    .application-content {
        padding: 1.25rem;
    }

    .application-title {
        font-size: 1.1rem;
        min-height: 2.6em;
    }
}

@media (max-width: 640px) {
    .application-card {
        height: 440px;
    }

    .application-image {
        height: 220px;
    }

    .slider-button {
        width: 38px;
        height: 38px;
    }

    .slider-button svg {
        width: 20px;
        height: 20px;
    }
} 