/* Page Hero Section with Video Background*/

/* Main Section Container */
.page-hero-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
}

/* Video Background Container */
.page-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Video Element */
.page-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

/* Content Container */
.page-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
}

/* Content Wrapper */
.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: page-hero-fade-in 1s ease-out;
}

/* Spacers */
.page-hero-spacer {
    height: 40px;
}

/* Subtitle */
.page-hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Main Title */
.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 30px 0;
    max-width: 900px;
}

.page-hero-title-text {
    display: block;
}

/* Button Wrapper */
.page-hero-button-wrap {
    margin-top: 10px;
}

/* Button */
.page-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8B5CF6;
    border: 2px solid #8B5CF6;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.page-hero-button:hover {
    background-color: #7C3AED;
    border-color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.page-hero-button:hover::before {
    left: 100%;
}

.page-hero-button-text {
    position: relative;
    z-index: 1;
}

.page-hero-button-title {
    display: block;
}

/* Fade In Animation */
@keyframes page-hero-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design*/

/* Tablet */
@media screen and (max-width: 1024px) {
    .page-hero-section {
        height: 500px;
    }
    
    .page-hero-title {
        font-size: 40px;
        max-width: 700px;
    }
    
    .page-hero-spacer {
        height: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .page-hero-section {
        height: 450px;
    }
    
    .page-hero-container {
        padding: 0 15px;
    }
    
    .page-hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .page-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .page-hero-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .page-hero-spacer {
        height: 20px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .page-hero-section {
        height: 400px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* About Us */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Main Wrapper */
.about-flow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Hero Section - Blue to Cyan Gradient*/

.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0012d4 0%, #43b8f7 50%, #00FFFF 100%);
    padding: 80px 0;
    overflow: hidden;
    margin: 60px auto;
    max-width: 1400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 82, 212, 0.3);
}

.about-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    color: #ffffff;
}

.about-hero-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-hero-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.about-hero-button {
    display: inline-block;
    padding: 18px 40px;
    background: #00D9FF;
    color: #0052D4;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-hero-button:hover {
    background: #00BFDD;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.about-hero-image {
    text-align: right;
}

.about-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}



/*Three Icon Cards - Diagonal Layout*/

.about-icon-cards {
    position: relative;
    background: #f5f5f5;
    padding: 100px 0 200px;
}

.about-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.about-icon-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


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

.about-icon-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.about-icon-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-icon-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.about-icon-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}



/*Framework Card Section*/

.about-framework {
    position: relative;
    background: #003366;
    padding: 80px 0 200px;
}

.about-framework-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: stretch;
}

.about-framework-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-framework-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.about-framework-title-right {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-framework-content .about-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00D9FF;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-framework-content .about-cyan-underline {
    width: 80px;
    height: 4px;
    background: #00D9FF;
    margin-bottom: 30px;
}

.about-framework-content .about-framework-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.about-framework-content .about-outline-button {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #00D9FF;
    color: #00D9FF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-framework-content .about-outline-button:hover {
    background: #00D9FF;
    color: #003366;
}

.about-framework-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-framework-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.about-dark-button {
    display: inline-block;
    padding: 15px 35px;
    background: #001F3F;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-dark-button:hover {
    background: #002855;
}

/* ABOUT FRAMEWORK - MOBILE */
@media (max-width: 768px) {
    .about-framework {
        padding: 60px 0 100px;
    }

    .about-framework-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .about-framework-card,
    .about-framework-content {
        padding: 30px 25px;
    }

    .about-framework-title {
        font-size: 18px;
    }

    .about-framework-title-right {
        font-size: 18px;
    }

    .about-framework-text {
        font-size: 13px;
    }

    .about-dark-button,
    .about-outline-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-framework-card,
    .about-framework-content {
        padding: 25px 20px;
    }

    .about-framework-title {
        font-size: 20px;
    }
    .about-framework-content .about-framework-text {
        font-size: 13px;
}
}


/*What We Offer - Blue Gradient*/

.about-offer {
    position: relative;
    background: linear-gradient(135deg, #0052D4 0%, #4364F7 50%, #00FFFF 100%);
    padding: 150px 0 200px;
}

.about-offer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: flex-start;
}

.about-offer-content {
    color: #ffffff;
    padding-top: 60px;
}

.about-label-light {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-offer-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-offer-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.about-cyan-button {
    display: inline-block;
    padding: 18px 40px;
    background: #00D9FF;
    color: #0052D4;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cyan-button:hover {
    background: #00BFDD;
    transform: translateY(-3px);
}

/* Stacked Cards */
.about-offer-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-offer-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.about-offer-card-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.about-offer-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-offer-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.about-offer-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}
/* ABOUT OFFER CARDS - MOBILE */
@media (max-width: 768px) {
    .about-offer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 25px;
    }

    .about-offer-card-icon {
        width: 70px;
        height: 70px;
    }

    .about-offer-card-title {
        font-size: 18px;
    }

    .about-offer-card-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-offer-card {
        padding: 20px;
    }

    .about-offer-card-title {
        font-size: 16px;
    }
}

/*Our Approach - Dark Blue*/

.about-approach {
    position: relative;
    background: #002855;
    padding: 150px 0 100px;
}

.about-approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 80px;
    align-items: center;
}

.about-approach-content {
    color: #ffffff;
}

.about-approach-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-approach-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.about-approach-illustration img {
    width: 100%;
    height: auto;
}

/* Bottom Cards */
.about-approach-cards {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-approach-bottom-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-approach-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.about-approach-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.about-outline-button-small {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #00D9FF;
    color: #00D9FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-outline-button-small:hover {
    background: #00D9FF;
    color: #002855;
}

/*Cloud Security Visual*/

.about-cloud-visual {
    position: relative;
    background: #f5f5f5;
    padding: 150px 0 200px;
    text-align: center;
}

.about-cloud-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.about-cloud-image {
    width: 100%;
    max-width: 900px;
    height: auto;
}


/* Responsive Design*/

@media screen and (max-width: 1200px) {
    .about-hero-container,
    .about-solutions-container,
    .about-framework-container,
    .about-offer-container,
    .about-approach-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero-title {
        font-size: 60px;
    }

    .about-circle-image {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .about-offer-cards {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .about-hero,
    .about-icon-cards,
    .about-solutions,
    .about-framework,
    .about-offer,
    .about-approach,
    .about-cloud-visual {
        padding: 80px 0 120px;
    }

    .about-hero-container,
    .about-solutions-container,
    .about-framework-container,
    .about-offer-container,
    .about-approach-container {
        padding: 0 30px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-cards-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .about-card-1,
    .about-card-2,
    .about-card-3 {
        margin-top: 0;
    }

    .about-circle-image {
        width: 300px;
        height: 300px;
    }

    .about-solutions-title,
    .about-offer-title,
    .about-approach-title {
        font-size: 40px;
    }

    .about-approach-cards {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-solutions-title,
    .about-offer-title,
    .about-approach-title {
        font-size: 32px;
    }

    .about-circle-image {
        width: 250px;
        height: 250px;
    }
}

/* Keywords in Approach Text - Bracket Style with Neon Effect */
.about-approach-text-keywords {
    display: inline-block;
    position: relative;
    padding: 10px 24px;
    margin: 0 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00D9FF;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* Bracket corners */
.about-approach-text-keywords::before,
.about-approach-text-keywords::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00D9FF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-approach-text-keywords::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.about-approach-text-keywords::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Additional inner corners */
.about-approach-text-keywords {
    background: 
        linear-gradient(to right, #00D9FF 2px, transparent 2px) 0 0,
        linear-gradient(to right, #00D9FF 2px, transparent 2px) 100% 0,
        linear-gradient(to bottom, #00D9FF 2px, transparent 2px) 0 0,
        linear-gradient(to bottom, #00D9FF 2px, transparent 2px) 100% 0,
        linear-gradient(to right, #00D9FF 2px, transparent 2px) 0 100%,
        linear-gradient(to right, #00D9FF 2px, transparent 2px) 100% 100%,
        linear-gradient(to bottom, #00D9FF 2px, transparent 2px) 0 100%,
        linear-gradient(to bottom, #00D9FF 2px, transparent 2px) 100% 100%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}

/* Hover effects */
.about-approach-text-keywords:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8),
                 0 0 20px rgba(0, 217, 255, 0.6),
                 0 0 30px rgba(0, 217, 255, 0.4);
    transform: scale(1.08);
}

.about-approach-text-keywords:hover::before,
.about-approach-text-keywords:hover::after {
    width: 100%;
    height: 100%;
    border-color: #00BFDD;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6),
                inset 0 0 15px rgba(0, 217, 255, 0.2);
}

/* Scanning line animation */
@keyframes scan-line {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.about-approach-text-keywords {
    overflow: hidden;
}

.about-approach-text-keywords::before {
    animation: scan-line 4s ease-in-out infinite;
}

/* Staggered delay for each keyword */
.about-approach-text-keywords:nth-child(1)::before {
    animation-delay: 0s;
}

.about-approach-text-keywords:nth-child(2)::before {
    animation-delay: 1.3s;
}

.about-approach-text-keywords:nth-child(3)::before {
    animation-delay: 2.6s;
}

/*Interactive Button Keywords*/

.about-keyword-button {
    display: inline-block;
    position: relative;
    padding: 14px 36px;
    background: transparent;
    color: #00D9FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    clip-path: polygon(
        0% 0%,
        calc(100% - 12px) 0%,
        100% 12px,
        100% 100%,
        12px 100%,
        0% calc(100% - 12px)
    );
}

/* Angled border effect */
.about-approach-text-keywords::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(0, 217, 255, 0.6) 50%,
        transparent 60%
    );
    animation: diagonal-scan 3s ease-in-out infinite;
}

@keyframes diagonal-scan {
    0% {
        transform: translate(-100%, -100%);
    }
    50% {
        transform: translate(0%, 0%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

/* Background fill on hover */
.about-keyword-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 217, 255, 0.1),
        rgba(0, 217, 255, 0.3),
        rgba(0, 217, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.about-keyword-button:hover::after {
    left: 100%;
}

.about-keyword-button:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4),
                0 0 40px rgba(0, 217, 255, 0.2);
}

.about-keyword-button:hover::before {
    border-color: #00BFDD;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6),
                inset 0 0 20px rgba(0, 217, 255, 0.2);
}

/* Glitch effect on hover */
@keyframes glitch-1 {
    0%, 100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-2px);
    }
    40% {
        transform: translateX(2px);
    }
    60% {
        transform: translateX(-2px);
    }
    80% {
        transform: translateX(2px);
    }
}

.about-keyword-button:hover {
    animation: glitch-1 0.3s ease-in-out;
}

/* Pulse corners */
@keyframes corner-pulse {
    0%, 100% {
        box-shadow: 
            -5px -5px 0 0 rgba(0, 217, 255, 0.3),
            5px 5px 0 0 rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 
            -8px -8px 0 0 rgba(0, 217, 255, 0.1),
            8px 8px 0 0 rgba(0, 217, 255, 0.1);
    }
}

.about-keyword-button:hover::before {
    animation: corner-pulse 1.5s ease-in-out infinite;
}

/* Active state */
.about-keyword-button:active {
    transform: translateY(-1px) scale(0.98);
}

/*Alternative Style: Tech Grid Pattern*/

/* Add this for even more style variation */
.about-approach-text-keywords {
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 217, 255, 0.05) 25%, rgba(0, 217, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.05) 75%, rgba(0, 217, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 217, 255, 0.05) 25%, rgba(0, 217, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.05) 75%, rgba(0, 217, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

/*Responsive Design for Keywords*/

@media screen and (max-width: 768px) {
    .about-approach-text-keywords {
        padding: 8px 18px;
        font-size: 13px;
        letter-spacing: 2px;
        margin: 0 8px;
    }

    .about-approach-text-keywords::before,
    .about-approach-text-keywords::after {
        width: 15px;
        height: 15px;
    }

    .about-keyword-button {
        padding: 12px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-keyword-button::before {
        clip-path: polygon(
            0% 0%,
            calc(100% - 10px) 0%,
            100% 10px,
            100% 100%,
            10px 100%,
            0% calc(100% - 10px)
        );
    }
}

@media screen and (max-width: 480px) {
    .about-approach-text-keywords {
        padding: 6px 14px;
        font-size: 11px;
        letter-spacing: 1.5px;
        margin: 0 6px;
    }

    .about-approach-text-keywords::before,
    .about-approach-text-keywords::after {
        width: 12px;
        height: 12px;
    }

    .about-keyword-button {
        padding: 10px 22px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }
}