  :root {
    --primary-color: #006064; /* Teal */
    --secondary-color: #b18e3a; /* Gold */
    --light-color: #e9f2fb;
    --dark-color: #333;
    --white: #fff;
    --gray: #f5f5f5;
    --accent: #e8f5e9; /* Light green accent */
    --transition-fast: 0.2s;
    --transition-medium: 0.4s;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3 {
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }

  .enstal{
    align-items: center; 
    justify-content: center; 
    gap: 8px;       
    background-color: var(--primary-color); 
    color: white; 
    padding: 10px 16px;        
    border-radius: 8px;    
    cursor: pointer;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.0rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
  }

  .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
  }
  
  .btn:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }

  @media (max-width: 380px) {
      .countdown-widget {
          width: 320px;
      }
      
      .time-value {
          font-size: 2rem;
          min-width: 60px;
          padding: 8px 12px;
      }
      
      .time-separator {
          font-size: 1.6rem;
      }
  }


  .countdown-widget.hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
  }

  .countdown-widget {
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
  }

  /* Add these styles */
  .service-sidebar-card {
    position: relative;
  }

  .service-lock-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff3b30; /* Red for locked */
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .service-lock-icon.unlocked {
    color: #34c759; /* Green for unlocked */
  }

  .service-sidebar-card.loading .service-lock-icon {
    opacity: 0.5;
  }

  .service-sidebar-card {
    transition: opacity 0.3s ease;
  }

  .service-sidebar-card[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }

  .service-lock-icon.fa-lock {
    color: #ff3b30; /* Red for locked */
  }

  .service-lock-icon.fa-unlock {
    color: #34c759; /* Green for unlocked */
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition-fast);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
  }
    
  /* Hero Section */
  .hero {
    height: 85vh;
    min-height: 600px;
    background: url('../images/lamas.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .hero-title span {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    color: var(--dark-color);
  }

  .search-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .search-container {
    position: relative;
    display: flex;
    width: 100%;   
    flex-direction: column;
  }

  .search-header {
    padding: 0 15px 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .search-greeting {
    color: var(--primary-color);
    font-family: verdana;
    font-size: 0.9rem;
  }

  .search-greeting strong {
    color: var(--secondary-color);
  }

  .search-input-container {
    position: relative;
    display: flex;
    width: 100%;
  }

  .search-icon-container {
    width: 20px;
    height: 20px;
    /*background-image: url('../images/search_icon.svg');*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .search-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    resize: none;
    min-height: 44px;
    max-height: 200px;
    overflow-y: auto;
    outline: none;
    cursor: text;
    transition: all var(--transition-medium);
    line-height: 1.5;
    background-color: rgba(0, 96, 100, 0.05);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    caret-color: var(--primary-color);
  }

  .search-input:focus {
    background-color: rgba(0, 96, 100, 0.08);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--secondary-color);
  }

  .search-input::placeholder {
    opacity: 1;
    transition: opacity 0.2s;
  }

  .search-input:focus::placeholder {
    opacity: 0.6;
  }
  
  .search-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    height: 40px;
    width: 40px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-btn i {
    font-size: 1rem;
  }
   
  .search-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
  }
  
  .tchovi-floating-btn {
    display: none;
  }

  /* Additional styles for the new elements */
  .hero-actions {
    position: fixed; /* Changed from absolute to fixed */
    top: 100px; /* Adjusted to account for header */
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 50; /* Ensure it stays above other elements */
    transition: all var(--transition-medium);
  }

  /* Update the services button styles */
  .icon-btn {  
    font-size: 18px;
    color: #fff;
    transition: all var(--transition-medium);
   }
  .services-btn svg { width:18px; height:18px; display:block; }
  .services-btn {
    background: rgba(184, 134, 11, 0.7);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
   .widget-reklam {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      /*margin-top: 2px;*/
      max-width: 200px;
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--secondary-color);
  }
  
  .widget-reklam img, 
  .widget-reklam video {
      width: 100%;
      min-height: auto;
      display: block;
  }
  
  .widget-reklam p {
      padding: 0.2rem;
      text-align: center;
      color: #34495e;
      line-height: 0.5;
  }

  #reklamContainer > * {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
  }

  #reklamContainer > *.visible {
      opacity: 1;
  }
        
      
  /* Mobile styles */
  @media (max-width: 768px) {
    .services-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      padding: 0;
      justify-content: center;
      align-items: center;
    }

    .services-btn span {
      display: none;
    }

    .services-btn svg {
      font-size: 20px;
      margin: 0;
    }
  }

   /* Mobile-specific styles */
    @media (max-width: 768px) {
      /* Floating Tchovi button */
      .tchovi-floating-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--secondary-color);
        color: var(--white);
        align-items: center;
        justify-content: center;
        display: flex;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 100;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .tchovi-floating-btn:hover {
          background: var(--primary-color);
          transform: scale(1.05);
      }
      
      .tchovi-floating-btn i {
        font-size: 24px;
      }

      .tchovi-floating-btn.active {
        transform: rotate(45deg);
        background: var(--primary-color);
      }
            
      /* Hide original search on mobile */
      .search-box {
        display: none;
      }
      
      /* Countdown widget improvements */
      .countdown-widget {
        top: 90px;
        left: 10px;
        width: auto;
        min-width: 0;
        max-width: 180px;
        padding: 10px;
        background-color: wheat;
        transition: all 0.3s ease;
      }
      
      .countdown-widget.collapsed {
        width: 12px;
        overflow: hidden;
        padding: 8px;
      }
      
      .countdown-widget.collapsed .widget-header {
        margin-bottom: 0;
      }
      
      .countdown-widget.collapsed .countdown-row,
      .countdown-widget.collapsed .referral-display {
        display: none;
      }

      /* Profile photo improvements */
      .profile-photo-container {
        order: -1; /* Move to beginning of flex container */
      }
      
      .profile-photo, .avatar-placeholder {
        width: 45px;
        height: 45px;
      }
      
      .profile-status {
        width: 14px;
        height: 14px;
        bottom: 0;
        right: 0;
      }
    }
    
    /* Additional styles for all screens */
    .profile-photo, .avatar-placeholder {
      border: 2px solid white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
    
    .profile-photo:hover, .avatar-placeholder:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
  
  /* Hide regular nav on mobile */
  @media (max-width: 768px) {
   
    /* Mobile Menu Styles */
    .nav-links.show {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: var(--primary-color);
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      z-index: 1100;
    }
    
    .nav-links.show a {
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: var(--primary-color);
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      z-index: 1100;
    }
  
    .nav-links a {
      display: block;
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
  }
  /* Keep the existing hover effects */
  .services-btn:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .services-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .profile-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 96, 100, 0.5);
  }

  .profile-menu {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 250px;
    padding: 10px 0;
    z-index: 100;
    display: none;
  }
  

  .profile-menu.open {
    display: block;
  }
  
  .profile-menu-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .profile-menu-item:hover {
    background: #f5f5f5;
  }
  
  .services-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(232, 245, 233, 0.6);
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
    z-index: 99;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
  }
  
  .services-sidebar.open {
    right: 0;
  }
  
  .services-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .close-sidebar {
    cursor: pointer;
    font-size: 24px;
    color: #666;
  }
  
  .services-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .service-sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
  }
  
  .service-sidebar-card:hover {
    transform: translateY(-3px);
  }
  
  .service-sidebar-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .service-sidebar-card h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
  }
  
  .service-sidebar-card p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #666;
  }

  /* Loading States */
  .service-sidebar-card.loading {
    position: relative;
    pointer-events: none;
  }

  .service-sidebar-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    border-radius: inherit;
  }

  .service-sidebar-card.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
  }

  /* Animations */
  @keyframes slideIn {
    from { bottom: -50px; opacity: 0; }
    to { bottom: 20px; opacity: 1; }
  }

  @keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  /* ======================
    SERVICE ACTIVATION MODAL
  ====================== */
  .service-activation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .service-activation-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .service-activation-modal .modal-content {
    /*background-color: #fff;*/
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
  }

  .service-activation-modal.active .modal-content {
    transform: translateY(0);
  }

  .service-activation-modal h3 {
    color: #006064;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .service-activation-modal p {
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .service-activation-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
  }

  .service-activation-modal .close-modal:hover {
    color: #000;
  }

  .service-activation-modal .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }

  .service-activation-modal .modal-actions button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .service-activation-modal .modal-actions #cancelActivation {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
  }

  .service-activation-modal .modal-actions #cancelActivation:hover {
    background-color: #e0e0e0;
  }

  .service-activation-modal .modal-actions #confirmActivation {
    background-color: #006064;
    color: white;
    border: 1px solid #006064;
  }

  .service-activation-modal .modal-actions #confirmActivation:hover {
    background-color: #004d4d;
    border-color: #004d4d;
  }

  .service-activation-modal .modal-actions #confirmActivation:disabled {
    background-color: #80b3b3;
    border-color: #80b3b3;
    cursor: not-allowed;
  }

  /* Animation when modal appears */
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service-activation-modal.active .modal-content {
    animation: modalFadeIn 0.3s ease-out forwards;
  }
    .fade-out {
      opacity: 0;
      transition: opacity 0.5s;
    }
      
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 98;
      display: none;
    }
    
    .overlay.active {
      display: block;
    }

    .avatar-placeholder {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6e8efb, #a777e3);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      border: 2px solid #fff;
      cursor: pointer;
    }

    /* Single Comic Bubble Styling */
    .comic-bubble {
      position: relative;
      padding: 5px;
      margin-bottom: 20px;
      border-radius: 20px;
      background: #E3F2FD;
    }

    .bubble-time-section {
      padding: 5px;
      margin-bottom: 5px;
      border-radius: 10px;
      text-align: center;
    }

    .bubble-content-section {
      padding: 16px;
    }

    .bubble-tail {
      position: absolute;
      width: 30px;
      height: 30px;
      bottom: -15px;
      left: 45%;
      background: inherit;
      transform: rotate(45deg);
      z-index: -1;
    }

    .kreyol-time-display {
      font-weight: bold;
    }

    .kreyol-date {
      font-size: 0.9em;
      margin-bottom: 5px;
    }

    .kreyol-time {
      font-size: 0.9em;
    }

    #text_gazette li {
      margin-left: 17px;
      padding: 0.5rem;
    }

    .kreyol-timezone {
      font-size: 0.6em;
      font-style: italic;
    }

    .profile-status {
      position: absolute;
      bottom: -2px;
      right: -2px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid #fff;
    }
    
    .status-online {
      background-color: #4CAF50;
    }
    
    .status-offline {
      background-color: #F44336;
    }
    
    .profile-photo-container {
      position: relative;
      display: inline-block;
    }

    /* Footer Section */
    footer {
      background: var(--primary-color);
      color: var(--white);
      padding: 60px 0 0;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    
    .footer-column h3 {
      color: var(--white);
      margin-bottom: 20px;
      font-size: 1.3rem;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .contact-item i {
      font-size: 1.2rem;
      color: var(--secondary-color);
    }
    
    .footer-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer-logo img {
      max-width: 200px;
      border-radius: 8px;
    }
    
    .copyright {
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

   /* Add these new QR Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }

    @keyframes modalopen {
      from { opacity: 0; transform: translateY(-50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .close {
      position: absolute;
      right: 20px;
      top: 10px;
      color: #aaa;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s;
    }

    .close:hover {
      color: var(--primary-color);
    }

    .modal h2 {
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    #qrcode {
      margin: 20px auto;
      padding: 10px;
      background: white;
      display: inline-block;
    }

    .modal p {
      color: #666;
      font-size: 0.9rem;
      margin-top: 15px;
    }

/* count down widget */

 .countdown-widget {
      position: fixed;
      top: 100px; /* Adjusted to account for header */
      left: 10px;
      display: inline-flex;
      flex-direction: column;
      /*background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.95) 100%);*/
      border-radius: 12px;
      padding: 12px 16px;
      margin-left: 20px;
      box-shadow: 
        0 4px 12px rgba(0, 96, 100, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 96, 100, 0.1);
      backdrop-filter: blur(8px);
      min-width: 220px;
      z-index: 30;
    }

  .countdown-widget > div:first-child {
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-medium);
  }

  .countdown-widget:hover {
      transform: translateY(-5px);
  }
  
  .widget-header {
      display: flex;
      justify-content: space-between;
      padding: 1rem;
      background: linear-gradient(270deg, var(--secondary-color) 0.5%, #00838f 100%);
      color: var(--white);
  }
  
  .widget-title {
      font-weight: bold;
      font-size: 1.3rem;
      letter-spacing: 0.5px;
  }
  
  .go-button {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid var(--white);
      color: var(--white);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all var(--transition-fast);
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .go-button:hover {
      background: var(--white);
      color: var(--primary-color);
      transform: scale(1.08);
  }
  
  .countdown-row {
      padding: 1.5rem 1.2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      background: var(--gray);
  }
  
 
  .countdown-title i {
      margin-right: 10px;
      color: var(--secondary-color);
      font-size: 1.2rem;
  }
  
  .countdown-display {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
  }
  
  .time-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 5px;
  }
  
  .time-value {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--primary-color);
      background: var(--white);
      border-radius: 10px;
      padding: 10px 14px;
      min-width: 70px;
      text-align: center;
      box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 96, 100, 0.1);
  }
  
  .time-label {
      font-size: 0.8rem;
      color: var(--primary-color);
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
  }
  
  .time-separator {
      font-size: 2rem;
      font-weight: bold;
      color: var(--secondary-color);
      margin: 0 3px;
      margin-bottom: 25px;
      align-self: center;
  }
  
  .referral-display {
      padding: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      transition: background-color var(--transition-fast);
  }
  
  .referral-display:hover {
      background-color: var(--accent);
  }
  
  .referral-display:last-child {
      border-bottom: none;
  }
  
  .referral-info {
      display: flex;
      align-items: center;
  }
  
  .referral-icon {
      width: 36px;
      height: 36px;
      background: rgba(0, 96, 100, 0.1);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 12px;
      color: var(--primary-color);
  }
  
  .referral-label {
      color: var(--dark-color);
      font-weight: 500;
  }
  
  .referral-value {
      font-weight: 700;
      color: var(--primary-color);
      font-size: 1.2rem;
  }
  
  .referral-money {
      font-weight: 700;
      color: var(--secondary-color);
      font-size: 1.2rem;
  }
  
  .bonus-label {
      color: var(--dark-color);
      font-weight: 500;
  }
  
    /* Countdown screen */
    .countdown-row {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 8px;
      background: none;
    }

    .countdown-row::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 96, 100, 0.2), transparent);
    }

    .countdown-display {
      display: flex;
      align-items: center;
      gap: 1px;
    }

    .time-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 28px;
    }

    .time-value {
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--primary-color);
      background: rgba(0, 96, 100, 0.1);
      border-radius: 6px;
      padding: 4px 6px;
      min-width: 28px;
      text-align: center;
    }

    .time-label {
      font-size: 0.6rem;
      color: var(--dark-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
      opacity: 0.8;
    }

    .countdown-title {
      font-weight: 600;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
    }

    .countdown-title i {
      margin-right: 6px;
      font-size: 0.9rem;
    }

    .referral-display {
      display: flex;
      padding: .3rem;
      align-items: center;
      justify-content: space-between;
    }

    .referral-info {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .referral-icon {
      color: var(--secondary-color);
      font-size: 0.9rem;
      background: rgba(177, 142, 58, 0.1);
      border-radius: 50%;
      padding: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .referral-label {
      font-size: 0.75rem;
      color: var(--dark-color);
      font-weight: 500;
    }

    .referral-value {
      font-weight: 700;
      font-size: 1rem;
      color: var(--secondary-color);
      background: rgba(177, 142, 58, 0.1);
      border-radius: 12px;
      padding: 4px 10px;
    }

    .referral-money {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--secondary-color);
      margin-top: 5px;
    }

    /* Collapsed state */
    .countdown-widget.collapsed .go-text {
        display: none;
    }

    .countdown-widget.collapsed .chevron-icon {
        display: block;
    }

    /* Expand state */
    .countdown-widget:not(.collapsed) .go-text {
        display: block;
    }

    .countdown-widget:not(.collapsed) .chevron-icon {
        display: none;
    }

    /* Widget content animation */
    .widget-content {
        transition: all 0.3s ease;
        /*overflow: hidden;*/
    }

    .slogan{
      color: red;
    }
    .bar{
      color: #006064;
    }

    @media (max-width: 768px) {
    
      .countdown-widget {
        top: 90px;
        left: auto;
        min-width: 200px;
      }
      
      .time-value {
        font-size: 1rem;
        padding: 3px 5px;
      }
      
      .referral-value {
        font-size: 0.9rem;
      }
    }

     /* Animation */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .time-value {
      transition: all 0.3s ease;
    }

    .time-value:hover {
      animation: pulse 1s infinite;
      background: rgba(0, 96, 100, 0.2);
    }


    @media (max-width: 768px) {
      .hero-actions {
        flex-direction: column;
        top: 90px;
        right: 15px;
        gap: 10px;
      }

      .profile-menu {
        right: 0;
        left: auto;
        top: 100%;
      }

      .services-btn {
        width: 100%;
        justify-content: center;
      }
  
    .nav-links {
      display: none;
    }
    
    .mobile-menu-btn {
      display: block;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }

    .services-btn {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }

    .footer-column {
      align-items: center !important;
      text-align: center !important;
    }
    
    .contact-info {
      align-items: center !important;
    }
    
    .contact-item {
      justify-content: center !important;
    }
    
    .footer-logo img {
      margin: 0 auto !important;
    }
    
    #myChart2 {
      margin: 0 auto !important;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 1.8rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .btn {
      padding: 10px 25px;
    }
  }
  /* Smooth transition of height + top */
header, .nav-links {
  transition: all 0.3s ease;
}