 .time-converter-main-wrapper * {
      box-sizing: border-box !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .time-converter-main-wrapper {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
      min-height: 100vh !important;
      padding: 20px !important;
      position: relative !important;
      overflow: hidden !important;
			border-radius:15px;
    }

    .time-converter-main-wrapper::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') !important;
      pointer-events: none !important;
    }

    .time-converter-container {
      max-width: 1200px !important;
      margin: 0 auto !important;
      position: relative !important;
      z-index: 1 !important;
    }

    .time-converter-header {
      text-align: center !important;
      margin-bottom: 40px !important;
      animation: slideInDown 1s ease-out !important;
    }

/*     .time-converter-title {
      font-size: 35px !important;
      font-weight: 700 !important;
      color: #ffffff !important;
      text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
      margin-bottom: 10px !important;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) !important;
      background-size: 400% 400% !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      animation: gradientShift 3s ease-in-out infinite !important;
			text-transform:uppercase;
    } */

   .time-converter-title {
	font-size: 35px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
	margin-bottom: 10px !important;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) !important;
	background-size: 400% 400% !important;
	-webkit-background-clip: text !important;
	/* -webkit-text-fill-color: transparent !important; */
	animation: gradientShift 3s ease-in-out infinite !important;
	text-transform: uppercase;
}

    .time-converter-subtitle {
      font-size: 1.2rem !important;
      color: rgba(255,255,255,0.9) !important;
      font-weight: 300 !important;
    }

    .time-converter-main-card {
      background: rgba(255,255,255,0.95) !important;
      border-radius: 20px !important;
      padding: 40px !important;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
      backdrop-filter: blur(10px) !important;
      border: 1px solid rgba(255,255,255,0.2) !important;
      margin-bottom: 30px !important;
      animation: slideInUp 1s ease-out !important;
    }

    .time-converter-tabs {
      display: flex !important;
      justify-content: center !important;
      margin-bottom: 30px !important;
      background: #f8f9fa !important;
      border-radius: 15px !important;
      padding: 5px !important;
    }

    .time-converter-tab {
      flex: 1 !important;
      padding: 15px 20px !important;
      text-align: center !important;
      border-radius: 10px !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      font-weight: 600 !important;
      color: #6c757d !important;
      border: none !important;
      background: transparent !important;
    }

    .time-converter-tab.active {
      background: linear-gradient(135deg, #667eea, #764ba2) !important;
      color: white !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
    }

    .time-converter-content {
      display: none !important;
    }

    .time-converter-content.active {
      display: block !important;
      animation: fadeIn 0.5s ease-in !important;
    }

    .time-converter-input-group {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 30px !important;
      margin-bottom: 30px !important;
    }

    .time-converter-input-card {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
      border-radius: 15px !important;
      padding: 25px !important;
      border: 2px solid transparent !important;
      transition: all 0.3s ease !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .time-converter-input-card::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important;
      left: -100% !important;
      width: 100% !important;
      height: 100% !important;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent) !important;
      transition: left 0.5s ease !important;
    }

    .time-converter-input-card:hover::before {
      left: 100% !important;
    }

    .time-converter-input-card:hover {
      border-color: #667eea !important;
      transform: translateY(-5px) !important;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2) !important;
    }

    .time-converter-label {
      display: block !important;
      font-weight: 600 !important;
      color: #495057 !important;
      margin-bottom: 10px !important;
      font-size: 1.1rem !important;
    }

    .time-converter-input {
      width: 100% !important;
      padding: 15px !important;
      border: 2px solid #dee2e6 !important;
      border-radius: 10px !important;
      font-size: 1.1rem !important;
      transition: all 0.3s ease !important;
      background: white !important;
    }

    .time-converter-input:focus {
      outline: none !important;
      border-color: #667eea !important;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    }

    .time-converter-result {
      background: linear-gradient(135deg, #667eea, #764ba2) !important;
      color: white !important;
      padding: 25px !important;
      border-radius: 15px !important;
      text-align: center !important;
      margin-bottom: 30px !important;
      box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3) !important;
    }

    .time-converter-result-time {
      font-size: 2.5rem !important;
      font-weight: 700 !important;
      margin-bottom: 10px !important;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    }

    .time-converter-result-zone {
      font-size: 1.2rem !important;
      opacity: 0.9 !important;
    }

    .time-converter-world-clock {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
      gap: 20px !important;
      margin-bottom: 30px !important;
    }

    .time-converter-clock-card {
      background: white !important;
      border-radius: 15px !important;
      padding: 20px !important;
      text-align: center !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
      transition: all 0.3s ease !important;
      border: 2px solid transparent !important;
    }

    .time-converter-clock-card:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
      border-color: #667eea !important;
    }

    .time-converter-clock-svg {
      width: 80px !important;
      height: 80px !important;
      margin: 0 auto 15px !important;
    }

    .time-converter-clock-time {
      font-size: 1.5rem !important;
      font-weight: 600 !important;
      color: #495057 !important;
      margin-bottom: 5px !important;
    }

    .time-converter-clock-zone {
      color: #6c757d !important;
      font-size: 0.9rem !important;
    }

    .time-converter-features {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
      gap: 20px !important;
      margin-bottom: 30px !important;
    }

    .time-converter-feature-card {
      background: white !important;
      border-radius: 15px !important;
      padding: 25px !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
      transition: all 0.3s ease !important;
      border-left: 4px solid #667eea !important;
    }

    .time-converter-feature-card:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
    }

    .time-converter-feature-title {
      font-size: 1.3rem !important;
      font-weight: 600 !important;
      color: #495057 !important;
      margin-bottom: 15px !important;
    }

    .time-converter-feature-content {
      color: #6c757d !important;
      line-height: 1.6 !important;
    }

    .time-converter-info-section {
      background: rgba(255,255,255,0.95) !important;
      border-radius: 20px !important;
      padding: 40px !important;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
      backdrop-filter: blur(10px) !important;
      border: 1px solid rgba(255,255,255,0.2) !important;
    }

    .time-converter-info-title {
      font-size: 2.5rem !important;
      font-weight: 700 !important;
      color: #495057 !important;
      text-align: center !important;
      margin-bottom: 30px !important;
      background: linear-gradient(45deg, #667eea, #764ba2) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
    }

    .time-converter-info-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
      gap: 30px !important;
    }

    .time-converter-info-card {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
      border-radius: 15px !important;
      padding: 25px !important;
      border-left: 4px solid #667eea !important;
    }

    .time-converter-info-card-title {
      font-size: 1.4rem !important;
      font-weight: 600 !important;
      color: #495057 !important;
      margin-bottom: 15px !important;
    }

    .time-converter-info-card-content {
      color: #6c757d !important;
      line-height: 1.6 !important;
    }

    @keyframes slideInDown {
      from {
        opacity: 0 !important;
        transform: translateY(-50px) !important;
      }
      to {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
    }

    @keyframes slideInUp {
      from {
        opacity: 0 !important;
        transform: translateY(50px) !important;
      }
      to {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0 !important;
      }
      to {
        opacity: 1 !important;
      }
    }

    @keyframes gradientShift {
      0%, 100% {
        background-position: 0% 50% !important;
      }
      50% {
        background-position: 100% 50% !important;
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1) !important;
      }
      50% {
        transform: scale(1.05) !important;
      }
    }

  /* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* Large devices / small desktops (≤ 992px) */
@media (max-width: 992px) {
  .time-converter-container {
    padding: 0 15px;
  }

  .time-converter-input-group {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .time-converter-world-clock,
  .time-converter-features,
  .time-converter-info-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-tabs {
    flex-direction: column !important;
    gap: 10px;
  }

  .time-converter-tab {
    width: 100% !important;
  }

  .time-converter-input-card,
  .time-converter-result,
  .time-converter-main-card,
  .time-converter-info-section {
    padding: 20px !important;
  }
}

/* Medium devices / tablets (≤ 768px) */
@media (max-width: 768px) {
  .time-converter-title {
    font-size: 2.5rem !important;
  }

  .time-converter-subtitle {
    font-size: 1rem !important;
  }

  .time-converter-label,
  .time-converter-input,
  .time-converter-result-zone {
    font-size: 1rem !important;
  }

  .time-converter-input {
    padding: 12px !important;
  }

  .time-converter-result-time {
    font-size: 2rem !important;
  }

  .time-converter-clock-svg {
    width: 60px !important;
    height: 60px !important;
  }

  .time-converter-clock-time {
    font-size: 1.2rem !important;
  }

  .time-converter-feature-title {
    font-size: 1.1rem !important;
  }
}

/* Small devices (≤ 600px) */
@media (max-width: 600px) {
  .time-converter-title {
    font-size: 2rem !important;
  }

  .time-converter-main-card {
    margin: 0 !important;
    border-radius: 15px !important;
  }

  .time-converter-tabs {
    padding: 0 !important;
  }

  .time-converter-tab {
    padding: 12px !important;
    font-size: 0.9rem !important;
  }

  .time-converter-input,
  .time-converter-result,
  .time-converter-feature-card {
    border-radius: 12px !important;
  }

  .time-converter-info-title {
    font-size: 2rem !important;
  }
}

/* Extra small / phones (≤ 400px) */
@media (max-width: 400px) {
  .time-converter-title {
    font-size: 1.8rem !important;
  }

  .time-converter-subtitle {
    font-size: 0.9rem !important;
  }

  .time-converter-input,
  .time-converter-tab,
  .time-converter-label {
    font-size: 0.85rem !important;
    padding: 10px !important;
  }

  .time-converter-result-time {
    font-size: 1.5rem !important;
  }

  .time-converter-input-group,
  .time-converter-world-clock,
  .time-converter-features,
  .time-converter-info-grid {
    gap: 15px !important;
  }
}
