:root {
    --primary: #154245;
    --secondary-pink: #e8a7cf;
    --secondary-yellow: #fac414;
    --dark-bg: #0a1f21;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'DM Sans', sans-serif; */
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Syne', sans-serif; */
    font-weight: 700;
}

.accent-text {
    /* font-family: 'Space Mono', monospace; */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--secondary-yellow);
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-toggler {
    border-color: #111; /* optional border */
    border: none !important;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary-yellow) !important;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--secondary-yellow) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-pink) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url("img/banner2.jpg") no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

/* Background Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.521);
    /* overlay darkness */
    z-index: 10;
}


@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 100;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* z-index: 100; */
}

@media(max-width:600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .btn-custom {
        padding: 1rem !important;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-tagline {
    color: var(--secondary-yellow);
    /* font-family: 'Space Mono', monospace; */
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-weight: 700;
}

.btn-custom {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0.5rem;
}

.btn-primary-custom {
    background: var(--secondary-yellow);
    color: var(--primary);
}

.btn-primary-custom:hover {
    background: var(--secondary-pink);
    color: white;
    transform: translateY(-3px);
    /* box-shadow: 0 10px 30px rgba(250, 196, 20, 0.4); */
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary-pink);
}

.btn-outline-custom:hover {
    background: var(--secondary-pink);
    color: white;
    transform: translateY(-3px);
    /* box-shadow: 0 10px 30px rgba(232, 167, 207, 0.4); */
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 2rem 0;
    border-top: 3px solid var(--secondary-yellow);
    border-bottom: 3px solid var(--secondary-yellow);
    padding: 100px 0;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.stat-number {
    /* font-family: 'Syne', sans-serif; */
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-yellow) 0%, var(--secondary-pink) 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
}

/* Ecosystem Section */
.ecosystem-section {
    background: rgba(243, 243, 243, 0.897);
    color: var(--primary);
}

.ecosystem-section .section-title {
    color: var(--primary);
}

.ecosystem-section .section-title::after {
    background: var(--secondary-yellow);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ecosystem-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-yellow), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ecosystem-card:hover::before {
    transform: scaleX(1);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 20px 60px rgba(250, 196, 20, 0.3); */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.ecosystem-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-yellow);
}

/* Visionary Section */
.visionary-section {
    background: white;
}

.visionary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visionary-image {
    position: relative;
}

.visionary-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    /* background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-pink)); */
    background: #e8e8e8;
    border-radius: 20px;
    z-index: -1;
}

.visionary-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visionary-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232, 167, 207, 0.1), rgba(250, 196, 20, 0.1));
    border-left: 5px solid var(--secondary-yellow);
    border-radius: 10px;
    margin: 2rem 0;
}

/* Impact Section */
.impact-section {
    background: var(--light-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
    margin: 0 10px;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(21, 66, 69, 0.15);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--secondary-yellow);
    margin-bottom: 1rem;
}

.impact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.impact-description {
    color: #666;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(232, 167, 207, 0.1) 100%);
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-yellow);
}

.solution-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(250, 196, 20, 0.2);
    border-left-color: var(--secondary-pink);
}

.solution-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.solution-desc {
    color: #666;
}

/* Events Section */
.events-section {
    background: var(--primary);
    color: white;
}

.events-section .section-title {
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.5rem;
}

/* Partnership Section */
.partnership-section {
    background: white;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(21, 66, 69, 0.05), rgba(232, 167, 207, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.partner-card:hover .partner-icon {
    color: var(--secondary-yellow);
}

.partner-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.partner-name {
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary) 50%, var(--dark-bg) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(250, 196, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(232, 167, 207, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--secondary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-pink);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--secondary-yellow);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .visionary-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* logo slider */
.logoimg {
    width: 160px;
    height: 130px;
    animation: scroll 60s linear infinite;
}

.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}

.slider {
    margin-top: 70px;
    background-color: whitesmoke;
    padding: 2em 2em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%)
    }
}

/* company about */

.about-ciips-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.about-ciips-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 167, 207, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-ciips-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 196, 20, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #1a5558);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    /* font-family: 'Space Mono', monospace; */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 66, 69, 0.2);
}

/* Main Title */
.main-title {
    /* font-family: 'Syne', sans-serif; */
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-yellow), var(--secondary-pink));
    border-radius: 3px;
}

/* Content Text */
.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #34495e;
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Mission Statement Box */
.mission-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(21, 66, 69, 0.25);
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 196, 20, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mission-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-text .emoji {
    font-size: 2rem;
    margin-right: 0.5rem;
}

/* Key Highlights */
.highlights-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-yellow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(232, 167, 207, 0.15), transparent);
    border-radius: 0 16px 0 100%;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(21, 66, 69, 0.15);
    border-left-color: var(--secondary-pink);
}

.highlight-bullet {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.highlight-content {
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-ciips-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .mission-box {
        padding: 2rem 1.5rem;
    }

    .mission-text {
        font-size: 1.4rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/*  */

.cyber-sense-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.cyber-sense-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-yellow), var(--secondary-pink));
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Program Title */
.program-title {
    /* font-family: 'Syne', sans-serif; */
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-title-highlight {
    color: var(--secondary-yellow);
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Introduction */
.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
}

.emphasis-text {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2rem 0;
    /* border-left: 5px solid var(--secondary-pink); */
    box-shadow: 0 5px 20px rgba(250, 196, 20, 0.2);
}

/* Section Headings */
.section-heading {
    /* font-family: 'Syne', sans-serif; */
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    /* background: linear-gradient(180deg, var(--secondary-yellow), var(--secondary-pink)); */
    border-radius: 3px;
}

/* What It Addresses - List */
.addresses-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.addresses-list li {
    background: white;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-yellow);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    font-size: 1.05rem;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addresses-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.addresses-list li:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary-pink);
    box-shadow: 0 5px 25px rgba(21, 66, 69, 0.12);
}

/* Who Is It For - Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid var(--secondary-yellow);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-yellow), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(21, 66, 69, 0.15);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-role {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.audience-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Program Structure - Grid */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.structure-item {
    background: linear-gradient(135deg, var(--light-bg), var(--secondary-yellow));
    color: var(--primary);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(21, 66, 69, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.structure-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 196, 20, 0.15) 0%, transparent 70%);
}

.structure-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(21, 66, 69, 0.3);
}

.structure-bullet {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-yellow);
}

.structure-text {
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Impact Note */
.impact-note {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.897), rgba(192, 191, 188, 0.555));
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-yellow);
    margin-top: 1rem;
    text-align: center;
}

.impact-note-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .cyber-sense-section {
        padding: 60px 0;
    }

    .program-title {
        font-size: 2rem;
    }

    .program-title-highlight {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .program-title {
        font-size: 1.7rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .emphasis-text {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}