* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;  /* ensures text is readable */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}
.background-wrapper,
.nav-content-warper {
  overflow: visible; /* allow sticky */
}

.toast-success {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 9999;
}

.toast-success i {
    color: #22c55e;
    font-size: 16px;
}

.toast-success.show {
    opacity: 1;
    transform: translateY(0);
}



.main-nav, .nav-left, .nav-right {
    font-size: large;
}

/* Center menu horizontal */
.menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: black;
}

/* Right section horizontal */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Remove background from everything by default */
.hero   {
  background-color: rgba(235, 235, 235, 0.726);
}

.main-nav, .nav-right, .menu, .logo-h , .main-nav-a, .nav-left , .username, .icon, .language-menu, .lang-option, .the-lang, .pl-title, .rogramming-languages {
    background: white;
}

.nav-right i {
    font-size: 24px;   /* make icons bigger */
}

.logo-img {
    height: 40px;          /* adjusts size */
    width: auto;
    object-fit: contain;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-center a {
    padding: 8px 14px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
}


/* BOTTOM NAV */
.bottom-nav {
    display: flex;
    position: sticky;
    top: 0;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background: #cacaca;
    border-bottom: 1px rgb(167, 167, 167) solid;
}

.bottom-left {
    list-style: none;
    display: flex;
    gap: 20px;
}

.bottom-left a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-right i {
    font-size: 18px;
}

.bottom-left, .bottom-nav, .bottom-right, .bottom-nav-a, i, li, .language-selector, .pl-title, .programming-languages, .p-wrapper{
    background: #ffffff;
}

.bottom-nav i{
    padding-top: 4px;
    font-size: 14px;
    background-color: #94b4f7;  
}

.bottom-nav-a {
    display: inline-block;
    padding: 2px 5px;
    background-color: #f5f5f5;      /* light gray */
    color: #333;                     /* dark text */
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;             
    border: 1px solid #999;          /* increased from 2px to 3px */
    transition: all 0.1s ease;
}

.bottom-nav-a-store {
    display: inline-block;
    padding: 2px 5px;
    background-color: #94b4f7;      /* light gray */
    color: #333;                     /* dark text */
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;             
    border: 1px solid #999;          /* increased from 2px to 3px */
    transition: all 0.1s ease; 
}

/* Hover effect (unchanged) */
.bottom-nav-a:hover {
    background-color: #e0e0e0;       
    border-color: #555;              
    color: #111;                     
    transform: translateY(-1px);     
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.nav-content-warper {
    padding-top: 10px;
    background-color: white;
}

.main-nav-a.active {
    padding-bottom: 18px;
    border-color: white;
    border-left: 1px solid;
    padding-top: 7px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-radius: 0px;
    font-weight: 800;
}

.main-nav-a {
        padding: 12px 25px;  
}

.logo-h {
    padding-right: 40px;
    font-weight: 800;
}

.language {
    color: rgb(28, 129, 91);
}

/* Wrapper to position dropdown relative to the icon */
.language-selector {
    position: relative;
}

/* Dropdown Menu */
.language-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 160px;
    background: white;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    animation: fadeSlide 0.25s ease forwards;
    z-index: 9999;
    border: 1px black solid;
    border-radius: 5px;
}

/* Dropdown animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Option */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.lang-option img {
    width: 22px;
    height: auto;
}

.lang-option:hover {
    background: #f2f2f2;
}

.language {
    transition: transform 0.4s ease;
}

.language:hover {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* ===== HERO SECTION ===== */

.hero {
    background: #f7f7f7;
    padding-top: 0;
    padding-left: 70px;
    padding-right: 70px;
}

.hero-wrapper {
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    background-color: white;
}

.programming-languages {
    background: #f7f7f7;
    padding-top: 0;
    padding-left: 70px;
    padding-right: 70px;
}

.rogramming-languages-warpper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    background-color: white;
}

/* Left side (image) */
.hero-img {
    height: 380px;
    width: 380px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Right side (text) */
.hero-right {
    max-width: 500px;
}

.hero-subtitle {
    font-size: 24px;
    color: #555;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

/* Main Button */
.btn-primary {
    background: #51be51;
    color: white;
}

.btn-primary:hover {
    background: #20a320;
}

/* Secondary Button */
.btn-secondary {
    border: 1px solid #909091;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.1),
        0 4px 12px rgba(0,0,0,0.1);
    color: rgb(90, 90, 90);
}

.btn-secondary:hover {
    background: #e7edff;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        text-align: center;
    }
}

/* Overlay to cover the page */
.overlay {
    display: none; /* Start hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Show overlay */
.overlay.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}


/* Modal Form styling */
.request-cv {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

/* Inputs */
.request-cv input[type="text"],
.request-cv input[type="email"],
.request-cv input[type="number"],
.request-cv textarea {
    margin: 8px 0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Submit button */
.request-cv button[type="submit"] {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.request-cv button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Radio button styling */
.radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #007bff;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.radio-group input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
}


.pl-title {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    justify-content: left;
    padding-top: 50px;
    padding-left: 130px;
}

/* WRAPPER */
.pl-scroll-wrapper {
    width: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding-top: 10px
}

/* TRACK (moving element) */
.pl-scroll-track {
    display: flex;
    gap: 26px;
    animation: scrollLoop 10s linear infinite;
}

.pl-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;          /* slim vertical height */
    height: 32px;               /* intentional, crisp height */
    background: #ffffff;
    border-radius: 10px;        /* modern, not pill */
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.06);

    width: fit-content;
    min-width: unset;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}



.pl-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.p-images {
    width: 16px;
    height: 16px;
    margin: 0;                 /* NO vertical margins */
    display: block;
}

.pl-card span,
.pl-card p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    color: #111;
}


/* LOOP ANIMATION */
@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FADE EFFECT LEFT */
.fade-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* FADE EFFECT RIGHT */
.fade-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Section */
.cool-area {
  padding-left: 70px;
  padding-right: 70px;
  background: #f7f7f7;
}

/* Main layout */
.cool-area-wrapper {
  background: white;
  padding-top: 50px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* VS Code Window */
.mac-console {
  width: 750px;
}

.mac-console-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 750px;
  padding: 10px 14px;
  background: rgba(245, 245, 247, 0.9);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.mac-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

.mac-time {
  margin-left: auto;
  font-size: 12px;
  color: #6b7280;
}

/* VS Code body */
.vscode-container {
  display: flex;
  width: 750px;
  height: 355px;
  background: #16161d;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(23, 18, 36, 0.5);
  
}

.vscode-header{
    background: #16161d;
}

.sidebar {
  width: 180px;
  background: #16161d;
  color: #9ca3af;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.folder-p {
  color: white;
}

.file {
  padding: 2px 0 2px 30px;
  border-radius: 4px;
  cursor: pointer;
}

.file:hover,
.file.active {
  background: #3a3a4a;
  color: #fff;
}

.editor {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #242424;
  color: #d4d4d4;
}

.tabs {
  display: flex;
  border-top: 1px solid #333;
}

.tab {
  padding: 8px 16px;
  color: #9ca3af;
}

.tab.active {
  background: #1e1e2f;
  border-top: 2px solid #0a84ff;
  color: #fff;
}

/* Editor body */
.editor-body {
  display: flex;
  flex: 1;
  position: relative;
  padding: 16px;
}

.line-numbers {
  padding-right: 12px;
  color: #616161;
}

.code {
  flex: 1;
  white-space: pre-wrap;
}

.caret {
  position: absolute;
  width: 2px;
  height: 1em;
  background: #0a84ff;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Right column */
.working-on {
  max-width: 350px;
}

.working-on h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.working-on p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .cool-area-wrapper {
    flex-direction: column;
  }

  .mac-console {
    width: 100%;
  }
}


/* Right column container */
.working-on {
  max-width: 380px;
  padding-top: 12px;
}

/* Title */
.working-title {
  font-size: 22px;
  font-weight: 600;
  color: #1c1c1e;
  margin-bottom: 36px;
}

/* List container */
.focus-list {
  position: relative;
  padding-left: 28px;
}

/* Vertical guide line */
.focus-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 1px;
  height: calc(100% - 5px);
  background: rgba(24, 24, 24, 0.3);
}

/* Item */
.focus-item {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

/* Marker (light amber, restrained) */
.focus-marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.first-m { background: #ff5f57; }
.second-m { background: #febc2e; }
.third-m { background: #28c840; }

/* Content */
.focus-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.focus-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 320px;
}


.german-language {
  padding-left: 70px;
  padding-right: 70px;
  background: #f7f7f7;
}

.german-language-wrapper {
  background: white;
}

/* 1. Adjust the spacing and position */
.working-on .fa-arrow-left {
  display: inline-block;
  /* Use a negative margin to pull it UP closer to the text */
  margin-top: -10px; 
  position: relative;
  color: #20818e;   
  /* Move it slightly left to align with your vertical dots if needed */
  margin-left: 2px; 
}

.fa-arrow-left {
  font-size: 20px;
}

/* 2. The horizontal line */
.working-on .fa-arrow-left::after {
  content: "";
  position: absolute;
  /* If the line isn't perfectly centered on the arrow head, 
     adjust this percentage (e.g., 45% or 55%) */
  top: 50%;          
  right: 100%;       
  width: 600px;      
  height: 0.5px;
  
  background: linear-gradient(to left, #5c5b51, transparent);
  border-bottom: 1px dashed #3d483e;
  
  margin-right: 15px; 
}

/* The Horizontal Line */
.working-on .fa-arrow-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 250px; /* Reduced from 600px so it fits on most screens */
  height: 0.5px;
  background: linear-gradient(to left, #5c5b51, transparent);
  border-bottom: 0.5px dashed #3d483e;
  margin-right: 15px;
}

/* Ensure parents don't hide the badge */
.cool-area, .cool-area-wrapper, .working-on {
  overflow: visible !important;
}

.arrow-container {
  position: relative;
  display: inline-block;
  margin-top: -3px;
  overflow: visible !important; /* Critical */
}

/* The Horizontal Line - Apple Style */
.arrow-container .fa-arrow-left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 200px; 
  
  /* Height and Weight */
  height: 1px; /* 1px is the standard for crisp lines */
  transform: scaleY(0.5); /* This makes it feel like 0.5px without blurring */
  
  /* Color: Brighter Gray (Silver) */
  /* Using rgba to allow a bit of background to bleed through, which is very Apple */
  background: rgba(200, 200, 200, 0.3); 
  
  /* Optional: Add a slight gradient so it fades out as it moves left */
  /* background: linear-gradient(to left, rgba(200, 200, 200, 0.4), transparent); */

  margin-right: 12px;
  pointer-events: none;
}
/* Ensure parents allow the glass effect to overflow */
.cool-area, .working-on {
    overflow: visible !important;
}

.status-badge {
    position: absolute;
    top: 50%;
    right: calc(100% + 215px); 
    transform: translateY(-50%);
    
    display: flex !important;
    align-items: center;
    
    /* Apple Glassmorphism */
    background: rgba(255, 255, 255, 0.7) !important; 
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    /* Apple "Squircle" Corners */
    border-radius: 10px;
    
    /* Subtle SF-style Border */
    border: 0.5px solid rgba(255, 255, 255, 0.4) !important;
    
    /* Soft Elevation Shadow */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);

    padding: 6px 14px;
    white-space: nowrap;
    visibility: visible !important;
}

.status-text {
    /* Apple Typography Specs */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: 13px;
    letter-spacing: -0.2px;
    color: #1d1d1f; /* Apple's Deep Black/Grey */
    font-weight: 500;
}

.status-text strong {
    font-weight: 600;
    color: #000;
}

.status-dot {
    height: 7px;
    width: 7px;
    background-color: #34c759; /* Apple iOS Green */
    border-radius: 50%;
    margin-right: 10px;
    /* Subtle glow */
    box-shadow: 0 0 4px rgba(52, 199, 89, 0.4);
    animation: applePulse 3s ease-in-out infinite;
}

@keyframes applePulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.cool-area, .working-on {
    overflow: visible !important; /* This allows the badge to sit outside the box */
}
.language-apple {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
  left: 500px;
}

/* Base Apple Card */
.language-card.apple {
  width: 280px;
  padding: 30px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
}

/* Hover = Apple-like lift */
.language-card.apple:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Typography */
.language-card h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  color: #111;
}

.language-card p {
  font-size: 14px;
  color: #666;
}

/* Badge */
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: #555;
}

/* Learning emphasis */
.learning {
  border: 1px solid rgba(0, 122, 255, 0.25);
}

.learning-badge {
  background: rgba(0, 122, 255, 0.15);
  color: #007aff;
}

.learning-badge-de {
  background: rgba(115, 228, 35, 0.333);
  color: #1e5300;
}

/* Icon */
.card-icon {
  font-size: 26px;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
}

/* Learning icon emphasis */
.learning-icon {
  color: #34c759; /* Apple green */
}

/* Progress bar */
.progress {
  margin-top: 22px;
  height: 6px;
  width: 100%;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill-1 {
  height: 100%;
  width: 75%;
  background: linear-gradient(
    90deg,
    #34c759,
    #6ee7a8
  );
  border-radius: 10px;
  animation: load 1.6s ease-out;
}

.progress-fill-2 {
  height: 100%;
  width: 80%;
  background: linear-gradient(
    90deg,
      #f29999,
      #1d61ff
  );
  border-radius: 10px;
  animation: load 1.6s ease-out;
}

.progress-fill-3 {
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    #000000,
    #ff0000
  );
  border-radius: 10px;
  animation: load 1.6s ease-out;
}


@keyframes load {
  from { width: 0; }
  to { width: 65%; }
}

@keyframes load {
  from { width: 0; }
  to { width: 65%; }
}



.learning-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 50px;
  align-items: start;
  outline-color: 70px solid #f7f7f7; /* simulate margin color */
}

/* LEFT CONTENT */
.learning-content {
  max-width: 600px;
}

.learning-pill {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.15);
  color: #1f8f4a;
  margin-bottom: 16px;
}

.learning-content h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #111;
}

.learning-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* RIGHT LANGUAGES */
.learning-languages {
  position: relative;
  top: 120px;
}

.learning-languages h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.languages-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 26px;
}

.language-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.language-card.albanian h2 {
  color: #c1121f; /* deep Albanian red */
}

.language-card.albanian .card-icon {
  color: #111;
}

.language-card.albanian .badge {
  background: rgba(193, 18, 31, 0.12);
  color: #c1121f;
}


.language-card.german h2 {
  color: #111;
}

.language-card.german .learning-icon {
  color: #d62828; /* muted German red */
}

.language-card.german .progress-fill-1 {
  background: linear-gradient(
    90deg,
    #000000,
    #dd0000,
    #ffce00
  );
}


.language-card.english h2 {
  color: #0a3d91; /* UK-style navy blue */
}

.language-card.english .learning-icon {
  color: #0a3d91;
}

.language-card.english .progress-fill-2 {
  background: linear-gradient(
    90deg,
    #7baaf5,
    #0a3d91,
  );
}


.language-card.albanian .progress-fill-3 {
  background: linear-gradient(
    90deg,
    #000000,
    #ff0000,
  );
}

.store-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  align-items: center;
}

/* LEFT CONTENT */
.store-pill {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #555;
  margin-bottom: 18px;
}

.store-content h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 26px;
  color: #111;
}

.store-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 560px;
  margin-bottom: 26px;
}

.store-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.store-features li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

/* Buttons */
.store-actions {
  display: flex;
  gap: 16px;
}

.storebtn-primary {
  padding: 14px 26px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.storebtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.storebtn-secondary {
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT CARD */
.store-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 36px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
}

.store-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.15);
  color: #1f8f4a;
}

.store-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.store-card p {
  font-size: 15px;
  color: #666;
}
