:root {
    --primary-color: #00325D;
    --secondary-color: #004975;
    --primary-rgb: 21, 87, 174;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --heading-color: #1A1A1A;
    --text-color: #1e1e1e;
    --light-bg: #F8F9FA;
    --border-color: #E9ECEF;
    --font-primary: 'Roboto', sans-serif;
    --white: #fff;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #001a33 0%, #004080 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: row;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    flex: 1;
    max-width: 600px;
}

.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-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
}

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

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

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

.hero-description {
    position: relative;
}

.hero-description-box {
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 15px;
    padding: 2rem;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.8;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Background Elements */
.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(rgba(79, 172, 254, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 172, 254, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Unique Shapes */
.shape {
    position: absolute;
    border: 2px solid rgba(79, 172, 254, 0.3);
    opacity: 0.3;
}

.shape.hexagon {
    width: 200px;
    height: 173px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10%;
    left: 5%;
    animation: floatAnimation 8s infinite ease-in-out;
}

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

.shape.diamond {
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    left: 15%;
    bottom: 20%;
    animation: floatAnimation 7s infinite ease-in-out 1s;
}

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

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

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

.blueprint-hex,
.blueprint-circle,
.blueprint-arc,
.blueprint-line {
    fill: none;
    stroke: rgba(79, 172, 254, 0.3);
    stroke-width: 1;
}

/* Product Image Section */
.product-image-section {
    position: relative;
    flex: 1;
    max-width: 600px;
    z-index: 4;
}

.product-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;
}

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

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

.prop-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    border-radius: 20px;
    transform: rotate(45deg);
    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%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    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;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
}

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

.corner-decorations .corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(79, 172, 254, 0.3);
}

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

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

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

.corner.bottom-right {
    bottom: 0;
    right: 0;
    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);
    }
}

@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;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 2rem;
    }

    .hero-content,
    .product-image-section {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 600px;
    }

    .title-decoration {
        justify-content: center;
    }

    .product-image-section {
        width: 100%;
        max-width: 600px;
    }
}

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

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

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

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

    .shape.hexagon {
        width: 150px;
        height: 130px;
    }

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

    .shape.diamond {
        width: 80px;
        height: 80px;
    }
}

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

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

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

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

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

/* Introduction Section */
.intro-section {
    padding: var(--section-spacing, 100px) 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, #00325D);
    border-radius: 2px;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color, #00325D);
    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, #4facfe);
    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, #1e1e1e);
    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, #4facfe);
    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;
    }
}

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

.advantages-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(rgba(var(--primary-rgb), 0.05) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.advantage-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(--primary-color);
    opacity: 0.1;
    animation: rotateShape 30s linear infinite;
}

.rotating-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    border: 2px dashed var(--primary-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(--primary-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;
}

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

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

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

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

.advantage-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
}

.advantage-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.advantage-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.icon-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
}

.icon-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.advantage-svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.advantage-item:hover .icon-container {
    transform: translateY(-5px);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.advantage-item:hover .icon-backdrop {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
}

/* Remove alternating colors since we're using consistent styling */
.advantage-item[data-index] .icon-container {
    color: var(--primary-color);
}

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

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

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

.decoration-line {
    display: flex;
    align-items: center;
    gap: 5px;
}

.line-segment {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, 
        rgba(var(--primary-rgb), 0.2),
        rgba(var(--primary-rgb), 0.1)
    );
}

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

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

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

.advantage-item:hover .corner-accent {
    opacity: 0.2;
}

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

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

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

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

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

.advantage-item:hover .highlight-bar {
    opacity: 1;
    transform: scaleX(1);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .advantage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .advantage-svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .advantage-svg {
        width: 24px;
        height: 24px;
    }
}

/* Add data-index based colors */
.advantage-item[data-index="1"] .icon-container { color: var(--primary-color); }
.advantage-item[data-index="2"] .icon-container { color: var(--secondary-color); }
.advantage-item[data-index="3"] .icon-container { color: var(--primary-color); }
.advantage-item[data-index="4"] .icon-container { color: var(--secondary-color); }
.advantage-item[data-index="5"] .icon-container { color: var(--primary-color); }
.advantage-item[data-index="6"] .icon-container { color: var(--secondary-color); }
.advantage-item[data-index="7"] .icon-container { color: var(--primary-color); }
.advantage-item[data-index="8"] .icon-container { color: var(--secondary-color); }

.advantage-item:hover .icon-container {
    transform: translateY(-5px);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@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: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .advantage-inner {
        padding: 2rem;
        min-height: 230px;
    }
}

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

    .advantage-inner {
        padding: 1.75rem;
        min-height: 200px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .advantage-inner {
        padding: 1.5rem;
        min-height: 180px;
    }
}

.title-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.15);
}

.title-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--secondary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Update existing styles */
.intro-title-wrapper,
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--heading-color);
    font-weight: 700;
    margin: 0.5rem 0;
    position: relative;
}

/* Responsive styles */
@media (max-width: 768px) {
    .title-badge {
        padding: 5px 14px;
        font-size: 0.8125rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .title-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }
}

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

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

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 100% 150%, var(--primary-color) 24%, transparent 25%),
        radial-gradient(circle at 0% 150%, var(--primary-color) 24%, transparent 25%),
        radial-gradient(circle at 50% 100%, var(--primary-color) 24%, transparent 25%),
        radial-gradient(circle at 100% 50%, var(--primary-color) 24%, transparent 25%),
        radial-gradient(circle at 0% 50%, var(--primary-color) 24%, transparent 25%);
    background-size: 3em 3em;
    background-color: transparent;
    opacity: 0.1;
}

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

.tech-cube {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 10%;
    top: 20%;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    background: rgba(var(--primary-rgb), 0.05);
}

.cube-face.front  { transform: translateZ(50px); }
.cube-face.back   { transform: translateZ(-50px) rotateY(180deg); }
.cube-face.right  { transform: rotateY(90deg) translateZ(50px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(50px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(50px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(50px); }

.circuit-lines {
    position: absolute;
    left: 5%;
    bottom: 15%;
}

.circuit-lines .line {
    display: block;
    width: 150px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.1;
    margin: 20px 0;
    position: relative;
}

.circuit-lines .line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.circuit-lines .line-1 { transform: rotate(45deg); }
.circuit-lines .line-2 { transform: rotate(-15deg); }
.circuit-lines .line-3 { transform: rotate(30deg); }

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

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

.type-item {
    position: relative;
}

.type-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

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

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s infinite;
}

.icon-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.card-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

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

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

.accent-line {
    position: absolute;
    background: var(--primary-color);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accent-line.vertical {
    width: 2px;
    height: 40px;
    transform: scaleY(0);
}

.accent-line.horizontal {
    height: 2px;
    width: 40px;
    transform: scaleX(0);
}

.accent-line.left { left: 20px; top: 50%; transform-origin: top; }
.accent-line.right { right: 20px; bottom: 50%; transform-origin: bottom; }
.accent-line.top { top: 20px; right: 50%; transform-origin: right; }
.accent-line.bottom { bottom: 20px; left: 50%; transform-origin: left; }

.type-card:hover .accent-corner,
.type-card:hover .accent-line {
    opacity: 0.2;
}

.type-card:hover .accent-line.vertical { transform: scaleY(1); }
.type-card:hover .accent-line.horizontal { transform: scaleX(1); }

.hover-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.indicator-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: indicatorPulse 2s infinite;
}

@keyframes rotateCube {
    from {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    to {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes indicatorPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive styles for types section */
@media (max-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .type-card {
        padding: 2rem;
        min-height: 230px;
    }
}

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

    .type-card {
        padding: 1.75rem;
        min-height: 200px;
    }

    .type-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .icon-number {
        font-size: 1.25rem;
    }

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

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

    .type-card {
        padding: 1.5rem;
        min-height: 180px;
    }
}

/* Features Section */
.features-section {
    padding: var(--section-spacing, 100px) 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;
}

/* Basic grid pattern */
.creative-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, var(--primary-color) 0.5px, transparent 1px),
        linear-gradient(-45deg, var(--primary-color) 0.5px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

/* Floating circles */
.floating-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.circle-element.c1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation: floatCircle 8s infinite ease-in-out;
}

.circle-element.c2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation: floatCircle 6s infinite ease-in-out reverse;
}

.circle-element.c3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 10%;
    animation: floatCircle 7s infinite ease-in-out 1s;
}

/* Diagonal lines */
.diagonal-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.d-line {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.1;
}

.d-line:nth-child(1) {
    top: 20%;
    left: -50%;
    transform: rotate(35deg);
}

.d-line:nth-child(2) {
    top: 50%;
    left: -50%;
    transform: rotate(-25deg);
}

.d-line:nth-child(3) {
    top: 80%;
    left: -50%;
    transform: rotate(15deg);
}

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

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

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

.feature-item {
    position: relative;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.icon-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.feature-svg {
    width: 28px;
    height: 28px;
    transform: rotate(0deg);
    stroke: var(--white);
    stroke-width: 2.5;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.feature-card:hover .feature-svg {
    transform: rotate(-10deg);
}

.feature-card:hover .icon-glow {
    opacity: 0.2;
}

.feature-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    max-height: calc(1.1rem * 1.6 * 4);
}

.feature-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.deco-line.top { top: 20px; right: 20px; }
.deco-line.bottom { bottom: 20px; left: 20px; }

.deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.deco-dot.top-left { top: 15px; left: 15px; }
.deco-dot.top-right { top: 15px; right: 15px; }
.deco-dot.bottom-left { bottom: 15px; left: 15px; }
.deco-dot.bottom-right { bottom: 15px; right: 15px; }

.feature-card:hover .deco-line,
.feature-card:hover .deco-dot {
    opacity: 0.2;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 2px 2px,
        var(--primary-color) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
    opacity: 0.1;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

/* Alternating colors for feature icons */
.feature-item[data-index="odd"] .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-item[data-index="even"] .icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

@keyframes flowPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Responsive styles for features section */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
        height: 230px;
    }
}

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

    .feature-card {
        padding: 1.75rem;
        height: 200px;
    }

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

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

    .feature-text {
        font-size: 1rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        max-height: calc(1rem * 1.6 * 3);
    }

    .tech-line {
        width: 70px;
    }
}

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

    .feature-card {
        padding: 1.5rem;
        height: 180px;
    }
}

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

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

.pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
}

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

.shape-square {
    position: absolute;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    transform: rotate(45deg);
}

.shape-square.s1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation: rotateSquare 20s linear infinite;
}

.shape-square.s2 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 15%;
    animation: rotateSquare 15s linear infinite reverse;
}

.shape-square.s3 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 10%;
    animation: rotateSquare 25s linear infinite;
}

.shape-square.s4 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 20%;
    animation: rotateSquare 18s linear infinite reverse;
}

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

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

.material-item {
    position: relative;
}

.material-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.material-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.icon-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.material-svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.material-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.material-card:hover .icon-glow {
    opacity: 0.2;
}

.material-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.material-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    max-height: calc(1.1rem * 1.6 * 4);
}

.card-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-square {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.deco-square.top-left {
    top: 15px;
    left: 15px;
    transform-origin: top left;
}

.deco-square.top-right {
    top: 15px;
    right: 15px;
    transform-origin: top right;
}

.deco-square.bottom-left {
    bottom: 15px;
    left: 15px;
    transform-origin: bottom left;
}

.deco-square.bottom-right {
    bottom: 15px;
    right: 15px;
    transform-origin: bottom right;
}

.material-card:hover .deco-square {
    opacity: 0.2;
    transform: rotate(45deg);
}

.deco-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    opacity: 0;
    transform: scaleX(0.3);
    transition: all 0.3s ease;
}

.material-card:hover .deco-bar {
    opacity: 1;
    transform: scaleX(1);
}

@keyframes rotateSquare {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

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

    .material-card {
        padding: 2rem;
        height: 230px;
    }
}

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

    .material-card {
        padding: 1.75rem;
        height: 200px;
    }

    .material-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .material-svg {
        width: 24px;
        height: 24px;
    }

    .material-text {
        font-size: 1rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        max-height: calc(1rem * 1.6 * 3);
    }

    .shape-square {
        display: none;
    }
}

@media (max-width: 480px) {
    .material-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .material-card {
        padding: 1.5rem;
        height: 180px;
    }
}

/* Industry Applications Section */
.industry-applications-section {
    padding: var(--section-spacing, 100px) 0;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

/* Enhanced Slider Container */
.industries-slider-container {
    position: relative;
    margin: 0 -15px;
}

/* Improved Swiper Slider Styles */
.industries-slider {
    padding: 30px 0;
    overflow: visible;
}

.industries-slider .swiper-slide {
    width: 350px;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    filter: blur(1px);
}

.industries-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

.industries-slider .swiper-slide-prev,
.industries-slider .swiper-slide-next {
    opacity: 0.8;
    filter: blur(0.5px);
}

/* Enhanced Industry Card */
.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    transform: translateY(0);
}

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

.industry-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Image Styles */
.industry-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.industry-card:hover .industry-image .image-overlay {
    opacity: 1;
}

/* Content Styles */
.industry-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
    position: relative;
    text-align: center;
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: -50px auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.industry-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: rotate(-10deg);
}

.industry-card:hover .industry-icon i {
    transform: rotate(10deg);
}

.industry-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: var(--primary-color);
}

.industry-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.industry-excerpt p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; /* Limits text to 3 lines */
    line-clamp: 3; /* Standard property for future compatibility */
    max-height: calc(1.6em * 3); /* Fallback for browsers that don't support line-clamp */
}

.industry-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.industry-content .read-more svg {
    transition: transform 0.3s ease;
}

.industry-content .read-more:hover {
    gap: 15px;
}

.industry-content .read-more:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .industry-applications-section {
        padding: 80px 0;
    }

    .industries-slider .swiper-slide {
        width: 320px;
    }
}

@media (max-width: 991px) {
    .industry-image {
        height: 220px;
    }

    .industry-content {
        padding: 20px;
    }

    .industry-title {
        font-size: 20px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
        margin-top: -40px;
    }

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

@media (max-width: 767px) {
    .industry-applications-section {
        padding: 60px 0;
    }

    .industries-slider .swiper-slide {
        width: 100%;
        transform: scale(1);
        opacity: 1;
        filter: none;
    }

    .industry-image {
        height: 200px;
    }

    .industry-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
        background: rgba(var(--primary-rgb), 0.1);
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 18px;
        color: var(--primary-color);
    }
}

@media (max-width: 575px) {
    .industry-image {
        height: 180px;
    }

    .industry-content {
        padding: 18px;
    }

    .industry-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .industry-icon {
        width: 45px;
        height: 45px;
        margin-top: -35px;
    }

    .industry-icon i {
        font-size: 18px;
    }

    .industry-content .read-more {
        font-size: 14px;
    }
}

/* Fix for devices with notches */
@media (max-width: 380px) {
    .swiper-button-prev {
        left: 2px;
    }

    .swiper-button-next {
        right: 2px;
    }
}

/* Slider Navigation Buttons */
.industries-slider .swiper-button-prev,
.industries-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.industries-slider .swiper-button-prev {
    left: 10px;
}

.industries-slider .swiper-button-next {
    right: 10px;
}

.industries-slider .swiper-button-prev:after,
.industries-slider .swiper-button-next:after {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.industries-slider .swiper-button-prev:hover,
.industries-slider .swiper-button-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.industries-slider .swiper-button-prev:hover:after,
.industries-slider .swiper-button-next:hover:after {
    color: white;
}

/* Enhanced Pagination */
.industries-slider .swiper-pagination {
    bottom: -30px !important;
}

.industries-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industries-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Mobile Styles for Navigation */
@media (max-width: 767px) {
    .industries-slider .swiper-button-prev,
    .industries-slider .swiper-button-next {
        width: 40px;
        height: 40px;
        background: rgba(var(--primary-rgb), 0.2);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        top: 50%;
        transform: translateY(-50%);
    }

    .industries-slider .swiper-button-prev {
        left: 5px;
    }

    .industries-slider .swiper-button-next {
        right: 5px;
    }

    .industries-slider .swiper-button-prev:after,
    .industries-slider .swiper-button-next:after {
        font-size: 16px;
        color: var(--white);
    }

    /* Adjust pagination for mobile */
    .industries-slider .swiper-pagination {
        bottom: -25px !important;
    }

    .industries-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .industries-slider .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* Fix for devices with notches */
@media (max-width: 380px) {
    .industries-slider .swiper-button-prev {
        left: 2px;
    }

    .industries-slider .swiper-button-next {
        right: 2px;
    }
} 

/* Applications in Systems Section */
.applications-systems-section {
    padding: var(--section-spacing, 100px) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.application-item {
    position: relative;
}

.application-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.application-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.application-icon .icon-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.application-svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.triangle-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: drawCheck 1s ease forwards;
}

@keyframes drawCheck {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.application-card:hover .icon-wrapper {
    transform: rotate(-15deg);
}

.application-card:hover .application-svg {
    transform: rotate(15deg);
}

.application-card:hover .icon-glow {
    opacity: 0.2;
}

.application-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.application-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    max-height: calc(1.1rem * 1.6 * 4);
}

.card-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deco-triangle.top-right {
    top: 15px;
    right: 15px;
    border-left: 12px solid transparent;
    border-right: 12px solid var(--primary-color);
    border-bottom: 12px solid transparent;
}

.deco-triangle.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: 12px solid transparent;
    border-left: 12px solid var(--secondary-color);
    border-top: 12px solid transparent;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.deco-line.horizontal {
    height: 2px;
    width: 50px;
    top: 50%;
    right: 20px;
    transform: scaleX(0);
    transform-origin: right;
}

.deco-line.vertical {
    width: 2px;
    height: 50px;
    left: 20px;
    bottom: 20px;
    transform: scaleY(0);
    transform-origin: bottom;
}

.application-card:hover .deco-triangle {
    opacity: 0.2;
}

.application-card:hover .deco-line {
    opacity: 0.3;
    transform: scale(1);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.03;
}

.application-card:hover .hover-overlay {
    opacity: 1;
}

/* Alternating colors for application icons */
.application-item[data-index="odd"] .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.application-item[data-index="even"] .icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

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

    .application-card {
        padding: 2rem;
        height: 230px;
    }
}

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

    .application-card {
        padding: 1.75rem;
        height: 200px;
    }

    .application-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .application-svg {
        width: 24px;
        height: 24px;
    }

    .application-text {
        font-size: 1rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        max-height: calc(1rem * 1.6 * 3);
    }
}

@media (max-width: 480px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .application-card {
        padding: 1.5rem;
        height: 180px;
    }
} 