/* Cybersecurity Compliance Page - Unique Styling */

/* Hero Section - Digital Trust Wall */
#cyber-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
	background-image: url('images/cyber_bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.trust-wall-container {
    text-align: center;
    padding: 80px 60px;
    max-width: 1400px;
    width: 100%;
}

.hero-message h1 {
    font-size: 4em;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-message .highlight {
    color: #ff00cc;
    display: block;
    font-size: 1em;
}

.certification-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cert-badge {
    position: relative;
    background: #1a1a1a;
    border: 2px solid #00b7e3;
    padding: 40px 20px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: unlockCert 0.8s ease forwards;
}

@keyframes unlockCert {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cert-badge:hover {
    border-color: #ff00cc;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 183, 227, 0.3);
}

.cert-lock {
    font-size: 2.5em;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.cert-badge:hover .cert-lock {
    opacity: 1;
    transform: rotate(-15deg) scale(1.2);
    filter: drop-shadow(0 0 10px #00b7e3);
}

.cert-logo {
    margin: 20px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo img {
    max-width: 120px;
    max-height: 100px;
    width: auto;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
}

.cert-badge:hover .cert-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.cert-label {
    font-size: 1.2em;
    color: #00b7e3;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

.hero-cta {
    padding: 20px 50px;
    font-size: 1.2em;
    background: #00b7e3;
    color: #111;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    transition: all 0.3s ease;
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 183, 227, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 183, 227, 0);
    }
}

.hero-cta:hover {
    background: #ff00cc;
    transform: translateY(-3px);
    animation: none;
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
}

/* Frameworks Section - Icon Grid */
#frameworks {
    padding: 100px 60px;
    background: #0f0f0f;
}

.frameworks-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.frameworks-intro h2 {
    font-size: 3em;
    font-weight: 100;
    margin-bottom: 20px;
    text-align: center;
}

.frameworks-intro .highlight {
    color: #00b7e3;
}

.frameworks-intro p {
    font-size: 1.2em;
    color: #e0e0e0;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.framework-box {
    background: #1a1a1a;
    border-left: 4px solid #00b7e3;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.framework-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 227, 0.1));
    transition: width 0.4s ease;
}

.framework-box:hover::before {
    width: 100%;
}

.framework-box:hover {
    border-left-color: #ff00cc;
    transform: translateX(10px);
}

.framework-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.framework-box h3 {
    font-size: 1.6em;
    font-weight: 400;
    color: #00b7e3;
    margin-bottom: 15px;
}

.framework-box p {
    font-size: 0.95em;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Why Compliance Section - Statement Block */
#why-compliance {
    padding: 120px 60px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.statement-block {
    max-width: 1200px;
    margin: 0 auto;
}

.statement-block h2 {
    font-size: 3.5em;
    font-weight: 100;
    margin-bottom: 40px;
    text-align: left;
}

.big-text {
    font-size: 1.8em;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 80px;
    border-left: 5px solid #00b7e3;
    padding-left: 40px;
}

.reason-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.reason {
    position: relative;
}

.reason-number {
    font-size: 5em;
    font-weight: 100;
    color: #00b7e3;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.reason h3 {
    font-size: 1.5em;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: -30px;
}

.reason p {
    font-size: 1em;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Approach Section - Diagonal Layouts */
#approach {
    padding: 100px 60px;
    background: #0f0f0f;
}

.approach-title {
    font-size: 3.5em;
    font-weight: 100;
    text-align: center;
    margin-bottom: 80px;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.approach-item.left-angle {
    padding-left: 40px;
}

.approach-item.right-angle {
    padding-right: 40px;
}

.approach-item.left-angle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 80%;
    background: linear-gradient(180deg, transparent, #00b7e3, transparent);
}

.approach-item.right-angle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 80%;
    background: linear-gradient(180deg, transparent, #ff00cc, transparent);
}

.approach-text h3 {
    font-size: 2em;
    font-weight: 300;
    color: #00b7e3;
    margin-bottom: 25px;
}

.approach-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 1.05em;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00b7e3;
    font-weight: bold;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Adjust size as needed */
    /* Feather the edges with a radial mask */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
/*    box-shadow: 20px 20px 0 rgba(0, 183, 227, 0.2);
    transition: all 0.3s ease; */
}

/* .approach-visual img:hover {
    box-shadow: 25px 25px 0 rgba(255, 0, 204, 0.3);
    transform: translate(-5px, -5px);
} */

/* Stats Banner */
#stats-banner {
    background: #00b7e3;
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: none;
}

.torn-paper {
    background-repeat: no-repeat;
    background-size: cover;
    height: 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    z-index: 2;
}

.torn-paper.top {
    background-image: url('images/torn-paper-top.png');
    z-index: 0;
}

.torn-paper.bottom {
    background-image: url('images/torn-paper-bottom.png');
    z-index: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4em;
    font-weight: 100;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Final CTA Section */
#final-cta {
    padding: 120px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3em;
    font-weight: 100;
    margin-bottom: 30px;
    text-align: center;
}

.cta-content .highlight {
    color: #00b7e3;
}

.cta-content p {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button-large {
    padding: 20px 60px;
    font-size: 1.2em;
    background: #ff00cc;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #00b7e3;
    color: #111;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 0, 204, 0.4);
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .trust-wall-container {
        padding: 60px 30px;
    }

    .hero-message h1 {
        font-size: 2.8em;
    }

    .certification-wall {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .framework-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .approach-item.left-angle::before,
    .approach-item.right-angle::after {
        display: none;
    }

    #stats-banner {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .statement-block h2,
    .approach-title,
    .cta-content h2 {
        font-size: 2.5em;
    }

    .big-text {
        font-size: 1.3em;
    }
}

@media (max-width: 550px) {
    #cyber-hero,
    #frameworks,
    #why-compliance,
    #approach,
    #final-cta {
        padding: 60px 20px;
    }

    .trust-wall-container {
        padding: 40px 20px;
    }

    .hero-message h1 {
        font-size: 2em;
    }

    .certification-wall {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-badge {
        padding: 30px 15px;
    }

    .frameworks-intro h2,
    .statement-block h2,
    .approach-title,
    .cta-content h2 {
        font-size: 2em;
    }

    .big-text {
        font-size: 1.1em;
        padding-left: 20px;
    }

    .framework-box {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 3em;
    }

    .cta-button-large {
        padding: 15px 40px;
        font-size: 1em;
    }
}
