:root {
    --primary-color: #439D51; /* Official Green */
    --primary-light: #5eb76c;
    --primary-dark: #2e7338;
    --secondary-color: #053579; /* Official Dark Blue */
    --secondary-light: #184e9c;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #ffffff;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

/* Utilities */
.text-primary { color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); }

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title .line {
    height: 4px;
    width: 70px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn-primary-outline {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
    z-index: 1001;
    position: relative;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact i {
    color: var(--primary-light);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary-light);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-weight: 400;
    color: var(--secondary-color);
}

.logo-img {
    height: 65px;
    width: auto;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a:not(.btn-primary-outline) {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-links a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-outline):hover::after,
.nav-links a:not(.btn-primary-outline).active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0; /* RTL alignment */
    background-color: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a:not(.btn-primary-outline) {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.dropdown-menu a:not(.btn-primary-outline)::after {
    display: none;
}

.dropdown-menu a:not(.btn-primary-outline):hover {
    background-color: #f7fafc;
    color: var(--primary-color);
}


.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Main Slider Section */
.main-slider {
    padding-top: 40px;
    padding-bottom: 20px;
}

.relative-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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


/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #a0d8c8;
    transform: rotate(45deg);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: #3b8e73;
}

/* Initiatives Section */
.initiatives {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.initiative-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    display: block;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.initiative-card:hover img {
    transform: scale(1.05);
}

.initiative-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(67, 157, 81, 0.95) 0%, rgba(67, 157, 81, 0.7) 40%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--white);
}

.initiative-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    text-align: right;
    max-width: 80%;
}

.initiative-overlay i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Statistics */
.statistics {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* About Section */
.sub-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-title i {
    color: var(--secondary-color);
}

.gov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gov-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
}

.gov-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.gov-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.objectives-list {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    margin-top: 20px;
}

.objectives-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
}

.objectives-list li i {
    margin-top: 5px;
}

/* Projects Section (Tabs) */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(11, 92, 70, 0.4);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.project-header h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.project-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.prog-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.program-card:hover .prog-icon {
    background: var(--primary-color);
    color: var(--white);
}

.program-card h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.program-card p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.program-card p strong {
    color: var(--text-dark);
}

.prog-details {
    margin-top: 20px;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
}

.prog-details li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.prog-details li::before {
    content: '\f054'; /* FontAwesome chevron-left (for RTL) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 0.7rem;
    color: var(--secondary-color);
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.activity-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: var(--transition);
    cursor: pointer;
}

.activity-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    color: var(--white);
}

.activity-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.activity-card:hover p {
    color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--white);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    opacity: 0.8;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-right: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3rem;
    }
    .objectives-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }

    .nav-links.show {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding: 0;
        padding-right: 15px;
        margin-top: 10px;
        display: none;
    }
    
    .has-dropdown:hover .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .gov-grid, .values-grid, .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-bar-contact {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.5rem;
    }
}

/* Centers Masonry Section */
.centers-section {
    background-color: var(--bg-light);
}
.centers-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(67, 157, 81, 0.4);
}

.centers-masonry {
    column-count: 1;
    column-gap: 25px;
}
@media (min-width: 768px) {
    .centers-masonry {
        column-count: 2;
    }
}
@media (min-width: 1024px) {
    .centers-masonry {
        column-count: 3;
    }
}

.center-item {
    break-inside: avoid;
    margin-bottom: 25px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.center-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.center-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.center-card:hover img {
    transform: scale(1.08);
}
.center-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(5, 53, 121, 0.95), transparent);
    color: var(--white);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.center-card:hover .center-info {
    transform: translateY(0);
    opacity: 1;
}
.center-info h4 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}
.center-info span {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
}


/* Global Page Banner */
.page-banner {
    background-color: var(--primary-color);
    /* Wavy pattern svg background */
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='150' viewBox='0 0 400 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L80,0 C120,40 140,110 200,110 C180,110 100,100 80,150 L0,150 Z' fill='rgba(255,255,255,0.15)'/%3E%3Cpath d='M80,0 L160,0 C200,40 220,110 280,110 C260,110 180,100 160,150 L80,150 Z' fill='rgba(255,255,255,0.15)'/%3E%3Cpath d='M160,0 L240,0 C280,40 300,110 360,110 C340,110 260,100 240,150 L160,150 Z' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    height: 120px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin: 20px auto 40px auto;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.banner-text {
    padding-right: 40px;
    color: var(--white);
    width: 100%;
}
.banner-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
    display: block;
}
.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 768px) {
    .page-banner {
        border-radius: 0;
        width: 100%;
        margin-top: 0;
        height: 100px;
        background-size: cover;
    }
    .banner-text {
        padding-right: 20px;
    }
}


/* Circular Values Section */
.values-circle-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 80px auto 140px auto;
}
@media (min-width: 768px) {
    .values-circle-container {
        width: 400px;
        height: 400px;
        margin: 100px auto 160px auto;
    }
}
.circle-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: #8b6b96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(139, 107, 150, 0.4);
    z-index: 5;
    flex-direction: column;
    line-height: 1.4;
}
.circle-item-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: filter 0.3s, box-shadow 0.3s;
    text-align: center;
    z-index: 4;
    cursor: default;
}
.circle-item-node:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.c-item-1 { transform: rotate(-90deg) translate(150px) rotate(90deg); background: #5dbbc2; color: white; }
.c-item-2 { transform: rotate(-30deg) translate(150px) rotate(30deg); background: #55d09f; color: white; }
.c-item-3 { transform: rotate(30deg) translate(150px) rotate(-30deg); background: #6fe466; color: white; }
.c-item-4 { transform: rotate(90deg) translate(150px) rotate(-90deg); background: #a2e850; color: #333; }
.c-item-5 { transform: rotate(150deg) translate(150px) rotate(-150deg); background: #ebe634; color: #333; }
.c-item-6 { transform: rotate(210deg) translate(150px) rotate(-210deg); background: #efa146; color: white; }

@media (min-width: 768px) {
    .circle-center-node {
        width: 150px;
        height: 150px;
        font-size: 1.5rem;
    }
    .circle-item-node {
        width: 120px;
        height: 120px;
        margin: -60px;
        font-size: 1.3rem;
    }
    .c-item-1 { transform: rotate(-90deg) translate(210px) rotate(90deg); }
    .c-item-2 { transform: rotate(-30deg) translate(210px) rotate(30deg); }
    .c-item-3 { transform: rotate(30deg) translate(210px) rotate(-30deg); }
    .c-item-4 { transform: rotate(90deg) translate(210px) rotate(-90deg); }
    .c-item-5 { transform: rotate(150deg) translate(210px) rotate(-150deg); }
    .c-item-6 { transform: rotate(210deg) translate(210px) rotate(-210deg); }
}

.circle-ring-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 8px solid #f2f2f2;
    border-radius: 50%;
    z-index: 1;
}
@media (min-width: 768px) {
    .circle-ring-bg {
        width: 420px;
        height: 420px;
    }
}
