/* Global Styles */
:root {
    --primary-color: #00325D;
    --secondary-color: #004975;
    --primary-rgb: 0, 50, 93; 
    --text-color: #333;
    --light-gray: #f5f5f5;
    --spacing-section: 80px;
    --white: #fff;
}

.industry-single-wrapper {
    overflow-x: hidden;
}

.swiper-button-next, .swiper-button-prev{
    color: #007aff52 !important;
}
.why-choose-video iframe{
    width: 100%;
    height: 20rem;
    border: 0;
    border-radius: 15px;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.benefits-text {
    text-align: left;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #00325D 50%, #004975 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Particles Background */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Floating Icons */
.floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 24px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.floating-icon i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    opacity: 0.7;
    transition: all 0.3s ease;
}

.floating-icon:nth-child(even) {
    font-size: 28px;
}

.floating-icon:nth-child(3n) {
    font-size: 32px;
}

@media (max-width: 768px) {
    .floating-icon {
        font-size: 20px;
    }
    .floating-icon:nth-child(even) {
        font-size: 24px;
    }
    .floating-icon:nth-child(3n) {
        font-size: 28px;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.industry-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-badges .badge i {
    font-size: 20px;
    color: var(--white);
}

.hero-badges .badge span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M10 10h80v80H10z' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M20 20h60v60H20z' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M30 30h40v40H30z' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.tech-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Responsive Styles for Hero Section */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0;
        min-height: 500px;
    }

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

    .industry-intro {
        font-size: 16px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

    .hero-badges .badge {
        padding: 12px 20px;
    }

    .hero-badges .badge i {
        font-size: 18px;
    }

    .hero-badges .badge span {
        font-size: 13px;
    }
}

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

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .industry-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-badges {
        gap: 15px;
    }

    .hero-badges .badge {
        padding: 10px 15px;
        width: calc(50% - 10px);
    }
}

/* Products & Systems Sections */
.relevant-products-section,
.relevant-systems-section {
    padding: var(--spacing-section) 0;
    background: var(--light-gray);
}

.products-slider,
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card,
.system-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover,
.system-card:hover {
    transform: translateY(-5px);
}

.product-image,
.system-image {
    height: 200px;
    overflow: hidden;
}

.product-image img,
.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title,
.system-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: var(--secondary-color);
    color: white;
}

/* Introduction Section */
.introduction-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.intro-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='90' cy='10' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3Ccircle cx='90' cy='50' r='2'/%3E%3Ccircle cx='10' cy='90' r='2'/%3E%3Ccircle cx='50' cy='90' r='2'/%3E%3Ccircle cx='90' cy='90' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

/* Floating Icons */
.intro-icons-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.intro-icon {
    position: absolute;
    color: rgba(var(--primary-color-rgb), 0.1);
    font-size: 24px;
    transition: all 0.3s ease;
}

.intro-icon::after {
    content: attr(data-title);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary-color);
}

.intro-icon:hover::after {
    opacity: 1;
}

/* Content Styles */
.intro-content-wrapper {
    position: relative;
    z-index: 2;
}

.intro-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

/* Text Content */
.intro-text {
    position: relative;
    padding: 30px 0;
}

.intro-quote {
    position: absolute;
    top: 0;
    left: -30px;
    color: var(--primary-color);
    font-size: 40px;
    opacity: 0.2;
}

.intro-detail {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* Highlights */
.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
}

.highlight i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Decorative Elements */
.intro-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.element {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

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

    .intro-content {
        padding: 40px;
    }

    .intro-title {
        font-size: 32px;
    }

    .intro-detail {
        font-size: 16px;
    }

    .intro-highlights {
        flex-wrap: wrap;
        gap: 20px;
    }

    .highlight {
        font-size: 15px;
    }
}

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

    .intro-content {
        padding: 30px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-quote {
        font-size: 30px;
        left: -20px;
    }

    .intro-detail {
        font-size: 15px;
    }

    .intro-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .intro-content {
        padding: 25px;
    }

    .intro-title {
        font-size: 24px;
    }

    .section-badge {
        padding: 6px 15px;
        font-size: 12px;
    }

    .intro-quote {
        display: none;
    }
}

/* Applications, Key Features, Benefits Sections */
.applications-section,
.key-features-section,
.benefits-section {
    padding: var(--spacing-section) 0;
    background: var(--light-gray);
}

.applications-section:nth-child(even),
.key-features-section:nth-child(even),
.benefits-section:nth-child(even) {
    background: white;
}

.applications-content,
.key-features-content,
.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.applications-content ul,
.key-features-content ul,
.benefits-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.applications-content li,
.key-features-content li,
.benefits-content li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.applications-content li:before,
.key-features-content li:before,
.benefits-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    padding: calc(var(--spacing-section) * 1.2) 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    overflow: hidden;
}

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

.why-choose-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(var(--primary-rgb), 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(var(--primary-rgb), 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(var(--primary-rgb), 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(var(--primary-rgb), 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.5;
}

.why-choose-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(var(--primary-rgb), 0.03) 100%);
}

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

.why-choose-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.why-choose-text p {
    margin-bottom: 15px;
}

.why-choose-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.why-choose-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.why-choose-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.why-choose-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

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

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

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

/* Responsive Styles for Why Choose Section */
@media (max-width: 991px) {
    .why-choose-section {
        padding: var(--spacing-section) 0;
    }

    .why-choose-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-text {
        font-size: 15px;
    }

    .why-choose-text ul li {
        padding-left: 25px;
    }

    .cta-button {
        padding: 12px 30px;
    }
}

@media (max-width: 575px) {
    .why-choose-wrapper {
        padding: 25px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
}

/* Products Slider Styles */
.products-slider-wrapper {
    margin: 0 -15px;
    padding: 0 30px;
}

.products-slider {
    margin-top: 40px;
}

.product-slide {
    padding: 15px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 20px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

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

/* Slick Slider Custom Styles */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--secondary-color);
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Slider Styles */
@media (max-width: 1200px) {
    .products-slider-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }
    
    .products-slider-wrapper {
        margin: 0 -10px;
        padding: 0 15px;
    }
    
    .product-slide {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 18px;
        padding: 15px;
    }
    
    .read-more {
        padding: 10px 20px;
        margin: 0 15px 15px;
    }
}

/* Products Section Styles */
.relevant-products-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev {
    padding: 35px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    padding: 35px;
}


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

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

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

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

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

/* Enhanced Product Card */
.product-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);
}

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

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

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

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

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

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

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

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

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.product-excerpt p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced Read More Button */
.read-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    margin-top: auto;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    align-self: center;
}

.read-more:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.read-more:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.read-more:hover:before {
    transform: translateX(0);
}

.read-more span {
    margin-right: 8px;
    position: relative;
    z-index: 2;
}

.read-more svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-image {
        height: 350px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .product-image {
        height: 350px;
    }

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

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

    .product-content {
        padding: 18px;
    }

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

    .read-more {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Beautiful Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    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);
}

.swiper-button-prev {
    left: 20px;
}

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

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

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

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

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

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Improved Responsive Styles */
@media (max-width: 1200px) {
    .swiper-slide {
        width: 320px;
    }

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

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

@media (max-width: 991px) {
    .relevant-products-section {
        padding: 80px 0;
    }

    .swiper-slide {
        width: 300px;
    }

    .product-image {
        height: 350px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 20px;
    }
}

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

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

    .product-image {
        height: 350px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
        /* top: auto; */
        bottom: 0;
        transform: translateY(0);
        background: #1557ae47;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 18px;
        color: white;
    }

    /* .swiper-button-prev {
        left: calc(50% - 60px);
    }

    .swiper-button-next {
        right: calc(50% - 60px);
    } */

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }

    /* Adjust pagination position */
    .swiper-pagination {
        bottom: 15px;
    }

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

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

@media (max-width: 575px) {
    .relevant-products-section {
        padding: 50px 0;
    }

    .products-slider {
        padding: 20px 0 50px;
    }

    .product-image {
        height: 350px;
    }

    .product-content {
        padding: 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    /* .swiper-button-prev {
        left: calc(50% - 50px);
    }

    .swiper-button-next {
        right: calc(50% - 50px);
    } */

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }

    /* Adjust touch area for better mobile interaction */
    .swiper-button-prev:before,
    .swiper-button-next:before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
}

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

    .swiper-button-next {
        right: calc(50% - 45px);
    }
}

/* Relevant Systems Section */
.relevant-systems-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

/* Background Patterns */
.systems-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l7.9-7.9h-.828zm5.656 0L19.515 8.485 17.343 10.657 28 0h-2.83zM32.656 0L41.142 8.485 39.728 9.9l-7.9-7.9h.828zm5.656 0L47.8 9.485 41.343 15.94 30.686 5.283 38.313 0zm2.828 0l-8.485 8.485L39.8 15.63 51.8 0h-2.83zM41.142 0L33.657 7.485 32.242 6.07l6.414-6.414L41.142 0zM0 0l15.940 15.94-1.414 1.414L0 2.828V0zM0 5.657l15.94 15.94-1.414 1.414L0 8.485v-2.83zm0 5.656l15.94 15.94-1.414 1.414L0 14.14v-2.83zm0 5.657l15.94 15.94-1.414 1.414L0 19.8v-2.83zM0 22.627l15.94 15.94-1.414 1.414L0 25.455v-2.83zm0 5.656L15.94 44.223l-1.414 1.414L0 31.11v-2.83zm0 5.657l15.94 15.94-1.414 1.414L0 36.77v-2.83zm0 5.657l15.94 15.94-1.414 1.414L0 42.424v-2.83zm0 5.656l15.94 15.94-1.414 1.414L0 48.08v-2.83zm0 5.657l15.94 15.94-1.414 1.414L0 53.737v-2.83zM0 60l15.94-15.94 1.414 1.414L2.828 60H0zm5.657 0L21.6 44.06l1.414 1.414L8.485 60H5.657zm5.657 0l15.94-15.94 1.414 1.414L14.14 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L19.8 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L25.455 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L31.11 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L36.77 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L42.424 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L48.08 60h-2.83zm5.657 0l15.94-15.94 1.414 1.414L53.737 60h-2.83zM60 60L44.06 44.06l1.414-1.414L60 57.172V60zm0-5.657L44.06 38.403l1.414-1.414L60 51.515v2.83zm0-5.657L44.06 32.746l1.414-1.414L60 45.858v2.83zm0-5.657L44.06 27.09l1.414-1.414L60 40.2v2.83zm0-5.657L44.06 21.432l1.414-1.414L60 34.544v2.83zm0-5.657L44.06 15.776l1.414-1.414L60 28.888v2.83z' fill='rgba(0,0,0,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.systems-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

/* System Icons Background */
.system-icons-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.system-icon {
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    font-size: 30px;
    transition: all 0.3s ease;
}

.system-icon:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.system-icon::after {
    content: attr(data-title);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-icon:hover::after {
    opacity: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.fa-2:before {
    content: "\f05d" !important;
}


/* Systems Grid */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* System Card */
.system-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.system-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* System Image */
.system-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* System Content */
.system-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.system-content .system-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
}

.system-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* System Features */
.system-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

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

/* System Link */
.system-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: all 0.3s ease;
}

.system-link i {
    transition: transform 0.3s ease;
}

.system-link:hover {
    color: var(--secondary-color);
}

.system-link:hover i {
    transform: translateX(5px);
}

/* Decorative Elements */
.systems-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circuit-paths {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M10 10h80v80H10z' stroke='rgba(0,0,0,0.03)' stroke-width='1' fill='none'/%3E%3Cpath d='M20 20h60v60H20z' stroke='rgba(0,0,0,0.03)' stroke-width='1' fill='none'/%3E%3Cpath d='M30 30h40v40H30z' stroke='rgba(0,0,0,0.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    opacity: 0.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .relevant-systems-section {
        padding: 80px 0;
    }

    .systems-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

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

  
    .system-image {
        height: 180px;
    }

    .system-content {
        padding: 20px;
    }

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

@media (max-width: 575px) {
    .systems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .system-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* Applications Section */
.applications-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

/* Background Elements */
.applications-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hex-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V10C10 4.477 5.523 0 0 0h24c-5.523 0-10 4.477-10 10v20c0 5.523 4.477 10 10 10H0z' fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Center align items in incomplete rows */
@supports (grid-template-rows: masonry) {
    .applications-grid {
        grid-template-rows: masonry;
        justify-items: center;
    }
}

/* Fallback for browsers that don't support grid-template-rows: masonry */
@supports not (grid-template-rows: masonry) {
    .applications-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Target items in the second row when there are 4 items total */
    .applications-grid:has(.application-card:nth-child(4)) {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    .applications-grid:has(.application-card:nth-child(4)) .application-card:nth-child(4) {
        grid-column: 2;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .applications-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .applications-grid:has(.application-card:nth-child(4)) {
            grid-template-columns: repeat(2, minmax(250px, 1fr));
        }

        .applications-grid:has(.application-card:nth-child(4)) .application-card:nth-child(3),
        .applications-grid:has(.application-card:nth-child(4)) .application-card:nth-child(4) {
            margin: 0 auto;
        }
    }

    @media (max-width: 767px) {
        .applications-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .applications-grid:has(.application-card:nth-child(4)) {
            grid-template-columns: repeat(2, minmax(220px, 1fr));
        }
    }

    @media (max-width: 575px) {
        .applications-grid,
        .applications-grid:has(.application-card:nth-child(4)) {
            grid-template-columns: 1fr;
        }

        .applications-grid:has(.application-card:nth-child(4)) .application-card:nth-child(4) {
            grid-column: 1;
        }
    }
}

/* Application Card */
.application-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.application-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

/* App Icon */
.app-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.app-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* App Content */
.app-content {
    position: relative;
    z-index: 2;
}

.app-title, 
.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

/* Hover Content */
.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.application-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.hover-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* App Features */
.app-features {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.app-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.app-features i {
    font-size: 12px;
}

/* Decorative Elements */
.app-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.05;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 50px;
}

.circle-4 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: 50px;
}

.circle-5 {
    width: 120px;
    height: 120px;
    top: 100px;
    right: 20%;
}

.tech-lines {
    position: absolute;
    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: 60px 60px;
    opacity: 0.02;
}

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

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

    .app-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

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

  

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .application-card-inner {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .applications-grid,
    .applications-grid:has(.application-card:nth-child(4)) {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .application-card-inner {
        padding: 20px;
    }

    .corner-shapes .corner {
        width: 100px;
        height: 100px;
    }
}

/* Key Features Section */
.key-features-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Elements */
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.features-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
    linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
    linear-gradient(30deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
    linear-gradient(150deg, #000000 12%, transparent 12.5%, transparent 87%, #000000 87.5%, #000000),
    linear-gradient(60deg, #00000077 25%, transparent 25.5%, transparent 75%, #00000077 75%, #00000077),
    linear-gradient(60deg, #00000077 25%, transparent 25.5%, transparent 75%, #00000077 75%, #00000077);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 100%);
}

/* Features Grid using Flexbox */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

/* Feature Card */
.feature-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover .feature-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Decorative Elements */
.features-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.diagonal-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        var(--primary-color) 0,
        var(--primary-color) 1px,
        transparent 0,
        transparent 50%
    );
    background-size: 30px 30px;
    opacity: 0.03;
}

.corner-shapes .corner {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
}

.corner-1 {
    top: -75px;
    left: -75px;
    border-radius: 0 0 50% 0;
}

.corner-2 {
    top: -75px;
    right: -75px;
    border-radius: 0 0 0 50%;
}

.corner-3 {
    bottom: -75px;
    left: -75px;
    border-radius: 0 50% 0 0;
}

.corner-4 {
    bottom: -75px;
    right: -75px;
    border-radius: 50% 0 0 0;
}

/* Center items in incomplete rows */
.features-grid:has(.feature-card:nth-child(4)) {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
}

.features-grid:has(.feature-card:nth-child(4)) .feature-card:nth-child(4) {
    grid-column: 2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        flex: 0 0 calc(33.333% - 17px);
        min-width: 250px;
    }
}

@media (max-width: 991px) {
    .key-features-section {
        padding: 80px 0;
    }

    .feature-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 240px;
    }

    .feature-card-inner {
        padding: 25px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

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

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 220px;
    }

    .feature-title {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        flex: 0 0 100%;
        max-width: 320px;
        width: 100%;
    }

    .feature-card-inner {
        padding: 20px;
    }

    .corner-shapes .corner {
        width: 100px;
        height: 100px;
    }
}

/* Existing styles remain unchanged */

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

/* Background Elements */
.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefits-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background: 
        radial-gradient(circle at 100% 50%, transparent 20%, rgba(0,0,0,0.05) 21%, rgba(0,0,0,0.05) 34%, transparent 35%, transparent),
        radial-gradient(circle at 0% 50%, transparent 20%, rgba(0,0,0,0.05) 21%, rgba(0,0,0,0.05) 34%, transparent 35%, transparent) 0 -50px;
    background-size: 75px 100px;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 100%);
}

/* Benefits Wrapper - Flexbox Layout */
.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Benefit Card */
.benefit-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    position: relative;
}

.benefit-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover .benefit-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

/* Benefit Icon */
.benefit-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    align-self: flex-start;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
}

.benefit-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Benefit Title */
.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

/* Decorative Elements */
.benefits-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.floating-shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.05;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    border-radius: 41% 59% 41% 59% / 41% 59% 41% 59%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: 50px;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 100px;
    right: 20%;
}

.tech-lines {
    position: absolute;
    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: 60px 60px;
    opacity: 0.02;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-wrapper {
        gap: 25px;
    }

    .benefit-card {
        flex: 0 0 calc(33.333% - 17px);
        min-width: 250px;
    }
}

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

    .benefit-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 240px;
    }

    .benefit-card-inner {
        padding: 25px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

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

    .benefits-wrapper {
        gap: 20px;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 220px;
    }

    .benefit-title {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .benefits-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        flex: 0 0 100%;
        max-width: 320px;
        width: 100%;
    }

    .benefit-card-inner {
        padding: 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Existing styles remain unchanged */


