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

body {
    font-family: 'Avenir', 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: auto;
    background: transparent;
    z-index: 1000;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 20px;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
    transform: translateX(-5px);
}

.nav-menu a.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.15);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
    transform: translateX(-5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Poster Elements */
.poster-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Sky gradient */
.sky-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #4DC6E1 0%, #9EE3F2 30%, #B7DFE9 60%, #D4ECF0 100%);
}

/* Sun element */
.sun-element {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    z-index: 2;
    animation: sun-glow 3s ease-in-out infinite alternate;
}

.sun-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(253, 245, 8, 0.6));
}

@keyframes sun-glow {
    0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(253, 245, 8, 0.6)); }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 30px rgba(253, 245, 8, 0.8)); }
}

/* Clouds */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    animation: float 6s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 40px;
    animation-delay: 0s;
}

.cloud-1::before {
    top: -20px;
    left: 20px;
    width: 60px;
    height: 30px;
}

.cloud-1::after {
    top: -10px;
    left: 40px;
    width: 40px;
    height: 20px;
}

.cloud-2 {
    top: 15%;
    right: 20%;
    width: 100px;
    height: 50px;
    animation-delay: 2s;
}

.cloud-2::before {
    top: -25px;
    left: 25px;
    width: 70px;
    height: 35px;
}

.cloud-2::after {
    top: -15px;
    left: 50px;
    width: 50px;
    height: 25px;
}

.cloud-3 {
    top: 80%;
    left: 50%;
    width: 60px;
    height: 30px;
    animation-delay: 4s;
}

.cloud-3::before {
    top: -15px;
    left: 15px;
    width: 40px;
    height: 20px;
}

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

/* Ocean waves */
.ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 100%;
    z-index: 0;
}

.waves-svg {
    width: 100%;
    height: 100%;
    animation: wave-move 8s ease-in-out infinite;
}

@keyframes wave-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Sand beach */
.sand-beach {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18vh;
    z-index: 4;
}

.sand-svg {
    width: 100%;
    height: 100%;
}

/* Decorative elements */
.decorative-elements {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* Content overlay */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    justify-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 11;
}

.title-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.hero-title-blue {
    color: #e72323;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: 0.02em;
    background: #fff200;
    padding: 0.15em 0.5em;
    /* border-radius: 0.5em; */
    /* box-shadow: 0 2px 8px rgba(37,99,235,0.08); */
    display: inline-block;
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-star {
    font-size: 1.5rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

.decoration-star:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feature-icon {
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-self: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Floating elements */
.floating-elements {
    position: relative;
    z-index: 11;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: float-card 4s ease-in-out infinite;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-weight: 600;
    color: #1f2937;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.card-4 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.features-list {
    list-style: none;
    font-size: 1.1rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
}

.course-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: center;
}

.course-card ul {
    list-style: none;
}

.course-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.course-card li:last-child {
    border-bottom: none;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: #f8fafc;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.schedule-info {
    display: grid;
    gap: 2rem;
}

.schedule-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.schedule-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.schedule-item p {
    color: #6b7280;
    font-size: 1.1rem;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-date {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-content h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6b7280;
}

/* Register Section */
.register {
    padding: 80px 0;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.register-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.register-info ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.register-info li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #374151;
}

.register-note {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.register-note p {
    margin-bottom: 1rem;
    color: #92400e;
}

.register-note ul {
    list-style: none;
    padding-left: 0;
}

.register-note li {
    margin-bottom: 0.5rem;
    color: #92400e;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-card p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        right: 0;
        transform: none;
        width: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 0 0 0 20px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }
    
    .nav-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: column;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0 0 0 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        margin-top: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .register-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-date {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card,
.schedule-item,
.timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

.hero-title-full {
    grid-column: 1 / -1;
} 

.hero-content-full {
    grid-column: 1 / -1;
} 

.fixed-register-btn {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 2000;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 48px;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 2px 16px 4px rgba(0,0,0,0.18);
    border: none;
    text-decoration: none;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1), visibility 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    animation: fixed-btn-float 3s ease-in-out infinite;
}

@keyframes fixed-btn-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.fixed-register-btn.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
} 

/* --- HERO-FLOW BLOCK STYLE --- */
.hero-flow {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #4DC6E1 0%, #9EE3F2 30%, #B7DFE9 60%, #D4ECF0 100%);
    padding: 100px 0 80px 0;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.hero-flow .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-flow .section-title {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.18);
    font-size: 2.7rem;
    margin-bottom: 2.5rem;
}

.hero-flow .section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

/* Add subtle wave and sand at the bottom for each block */
.hero-flow .block-waves {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}
.hero-flow .block-sand {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

/* Fade-in for all hero-flow blocks */
.hero-flow { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.hero-flow.visible { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-flow { padding: 60px 0 40px 0; min-height: 60vh; }
  .hero-flow .section-title { font-size: 2rem; }
}

/* --- END HERO-FLOW BLOCK STYLE --- */

/* Apply hero-flow to about, schedule, register, and adjust footer for harmony */
.about, .schedule, .register {
    background: none;
    padding: 0;
}

#about.hero-flow, #schedule.hero-flow, #register.hero-flow {
    padding: 100px 0 80px 0;
    min-height: 80vh;
}

.footer {
    background: linear-gradient(180deg, #1f2937 60%, #4DC6E1 100%);
    color: #fff;
    padding: 60px 0 20px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
}

.footer-section h3, .footer-section h4 {
    color: #FDF508;
}

.footer-section p {
    color: #e0e7ef;
}

.footer-bottom {
    color: #b6c2d1;
} 

.reviews-section {  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.review-bubble {
    background: #f0f8ff;
    padding: 0.7rem 1.0rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    animation: float-bubble 6s ease-in-out infinite;
    text-align: left;
    position: relative; /* Added for positioning the tail */
    margin-bottom: 5px; /* Added to give space for the tail */
}

.review-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #f0f8ff; /* Same color as the bubble background */
    border-bottom: 0;
    border-left: 0;
    margin-left: -7.5px;
    margin-bottom: -15px;
}

.review-bubble:nth-child(even)::after {
    left: auto;
    right: 20%;
    border-left: 15px solid transparent;
    border-right: 0;
    border-top-color: #f0f8ff;
}

.review-bubble:nth-child(odd) {
    align-self: flex-start;
}

.review-bubble:nth-child(even) {
    align-self: flex-end;
}

.review-bubble p {
    font-size: 0.6rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.review-bubble .reviewer {
    font-weight: 700;
    color: #0077cc;
    text-align: right;
    display: block;
}
@keyframes float-bubble {
  0%, 100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
} 

.review-bubble-left { align-self: flex-start; }
.review-bubble-right { align-self: flex-end; }

.review-bubble-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #f0f8ff;
    border-bottom: 0;
    border-left: 0;
    margin-left: -7.5px;
    margin-bottom: -15px;
}

.review-bubble-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #f0f8ff;
    border-bottom: 0;
    border-right: 0;
    margin-right: -7.5px;
    margin-bottom: -15px;
}

.vertical-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    margin: -1rem 0;
    padding-left: 25%;
}

.vertical-dots span {
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
} 